mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-21 18:25:41 +03:00
21 lines
472 B
Text
21 lines
472 B
Text
#!/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 $?
|
|
}
|