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.rc8

23 lines
578 B

#!/sbin/runscript
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/siproxd/files/siproxd.rc8,v 1.2 2014/03/03 13:51:58 polynomial-c Exp $
config_file="/etc/siproxd.conf"
pidfile="/var/run/siproxd/siproxd.pid"
command="/usr/sbin/siproxd"
command_args="-p ${pidfile} -c ${config_file}"
depend() {
need net
}
start_pre() {
if [ ! -f "${config_file}" ] ; then
eerror "Please create ${config_file} first!"
return 1
fi
checkpath -q -d ${pidfile%/*} -o siproxd:siproxd
}