puppet-standalone-mashup/shared/templates/base/init-d-actions

22 lines
286 B
Plaintext
Raw Normal View History

2012-05-14 13:15:05 +00:00
case "$1" in
start)
start
;;
stop)
stop
;;
restart|force-reload)
stop
start
;;
2012-05-23 11:52:12 +00:00
rotate)
rotate
;;
2012-05-14 13:15:05 +00:00
*)
echo "Usage: $0 {start|stop|restart}"
$RETVAL=1
;;
esac
exit $RETVAL