#!/sbin/runscript # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ depend() { before apache2 } start() { ebegin "Starting sslh" start-stop-daemon --start --exec /usr/sbin/sslh -- -u ${USER} -p ${LISTEN} -s ${SSH} -l ${SSL} eend $? } stop() { ebegin "Stopping sslh" start-stop-daemon --stop --exec /usr/sbin/sslh eend $? }