From d4fbceaeec3671400446bf848356cede01c8b19a Mon Sep 17 00:00:00 2001 From: mara Date: Sun, 9 Mar 2014 09:26:49 +0700 Subject: network/sslh: Added (Applicative protocol multiplexer). Signed-off-by: Willy Sudiarto Raharjo --- network/sslh/rc.sslh | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 network/sslh/rc.sslh (limited to 'network/sslh/rc.sslh') 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 -- cgit v1.2.3