diff options
Diffstat (limited to 'network/sslh/rc.sslh')
-rw-r--r-- | network/sslh/rc.sslh | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/network/sslh/rc.sslh b/network/sslh/rc.sslh new file mode 100644 index 0000000000..38b4a027a4 --- /dev/null +++ b/network/sslh/rc.sslh @@ -0,0 +1,47 @@ +#! /bin/sh + +# The prefix is normally filled by make install. If +# installing by hand, fill it in yourself! +NAME=sslh +PREFIX=/usr +DAEMON=$PREFIX/bin/${NAME} +CONFIG=/etc/sslh/sslh.conf + +start() +{ + pid=`pidof -o %PPID sslh` + if [[ -z $pid ]]; then + echo "Start services: sslh" + $DAEMON -F ${CONFIG} + logger -t ${tag} -p ${facility} -i 'Started sslh' + else + echo "Service is running." + fi +} + +stop() +{ + echo "Stop services: sslh" + killall -9 ${NAME} + logger -t ${tag} -p ${facility} -i 'Stopped sslh' +} + + +case "$1" in + start) + start + ;; + stop) + stop + ;; + restart) + stop + sleep 5 + start + ;; + *) + echo "Usage: /etc/rc.d/rc.sslh {start|stop|restart}" >&2 + ;; +esac + +exit 0 |