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

32 lines
691 B

#!/sbin/runscript
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/siproxd/files/siproxd.rc6,v 1.2 2005/09/22 23:24:06 stkn Exp $
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 $?
}