You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-misc/siproxd/files/siproxd.rc6

31 lines
585 B

#!/sbin/openrc-run
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
depend() {
need net
}
check_config() {
if [[ ! -f /etc/siproxd.conf ]]; then
eerror "Please create /etc/siproxd.conf first!"
return 1
fi
return 0
}
start() {
check_config || return 1
ebegin "Starting siproxd"
start-stop-daemon --start --exec /usr/sbin/siproxd -- \
-p /var/run/siproxd/siproxd.pid -c /etc/siproxd.conf
eend $?
}
stop() {
ebegin "Stopping siproxd"
start-stop-daemon --stop --pidfile /var/run/siproxd/siproxd.pid
eend $?
}