From: Dobrica Pavlinusic Date: Sun, 12 Feb 2012 19:31:30 +0000 (+0100) Subject: added restart X-Git-Url: http://git.rot13.org/?p=cloudstore.git;a=commitdiff_plain;h=685bada14777fd69e6d47294c7040b98fd211514 added restart --- diff --git a/init.d/_start_stop b/init.d/_start_stop index cf20f39..36a37e2 100755 --- a/init.d/_start_stop +++ b/init.d/_start_stop @@ -20,9 +20,14 @@ case $1 in fi ;; stop) - kill `cat /tmp/$NAME.pid` ;; + kill `cat /tmp/$NAME.pid` + ;; + restart) + $0 stop + $0 start + ;; *) - echo "usage: $0 {start|stop}" ;; + echo "usage: $0 {start|stop|restart}" ;; esac exit 0