19 lines
248 B
Plaintext
19 lines
248 B
Plaintext
|
case "$1" in
|
||
|
start)
|
||
|
start
|
||
|
;;
|
||
|
stop)
|
||
|
stop
|
||
|
;;
|
||
|
restart|force-reload)
|
||
|
stop
|
||
|
start
|
||
|
;;
|
||
|
*)
|
||
|
echo "Usage: $0 {start|stop|restart}"
|
||
|
$RETVAL=1
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
exit $RETVAL
|