diff options
Diffstat (limited to 'testing/sslh/sslh.initd')
-rw-r--r-- | testing/sslh/sslh.initd | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/testing/sslh/sslh.initd b/testing/sslh/sslh.initd new file mode 100644 index 0000000000..b75e96f2a3 --- /dev/null +++ b/testing/sslh/sslh.initd @@ -0,0 +1,21 @@ +#!/sbin/openrc-run +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +start() { + ebegin "Starting ${SVCNAME}" + start-stop-daemon --start \ + --pidfile /var/run/${SVCNAME}.pid \ + --exec /usr/sbin/sslh -- \ + ${DAEMON_OPTS} \ + --pidfile /var/run/${SVCNAME}.pid + eend $? +} + +stop() { + ebegin "Stopping ${SVCNAME}" + start-stop-daemon --stop --quiet --retry 20 \ + --pidfile /var/run/${SVCNAME}.pid + eend $? +} |