stunnel: adjust initscript

Use proper status messages, make spacing standard instead of a mix of
spacing/tabbing, drop boringly obvious comment from the header.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Gustavo Zacarias 2014-12-15 19:56:27 -03:00 committed by Peter Korsgaard
parent 48a9e431d8
commit d98be88165

View File

@ -1,36 +1,35 @@
#!/bin/sh #!/bin/sh
#
# Starts stunnel
#
start() { start() {
echo -n "Starting stunnel: " echo -n "Starting stunnel: "
start-stop-daemon -S -q -p /var/run/stunnel.pid --exec /usr/bin/stunnel start-stop-daemon -S -q -p /var/run/stunnel.pid --exec /usr/bin/stunnel
echo "OK" [ $? = 0 ] && echo "OK" || echo "FAIL"
} }
stop() { stop() {
echo -n "Stopping stunnel: " echo -n "Stopping stunnel: "
start-stop-daemon -K -q -p /var/run/stunnel.pid start-stop-daemon -K -q -p /var/run/stunnel.pid
echo "OK" [ $? = 0 ] && echo "OK" || echo "FAIL"
} }
restart() { restart() {
stop stop
start start
} }
case "$1" in case "$1" in
start) start)
start start
;; ;;
stop) stop)
stop stop
;; ;;
restart|reload) restart|reload)
restart restart
;; ;;
*) *)
echo "Usage: $0 {start|stop|restart}" echo "Usage: $0 {start|stop|restart}"
exit 1 exit 1
esac esac
exit $? exit $?