diff options
Diffstat (limited to 'net-misc/siproxd/files/siproxd.rc8')
-rw-r--r-- | net-misc/siproxd/files/siproxd.rc8 | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/net-misc/siproxd/files/siproxd.rc8 b/net-misc/siproxd/files/siproxd.rc8 new file mode 100644 index 000000000000..821bf46634b5 --- /dev/null +++ b/net-misc/siproxd/files/siproxd.rc8 @@ -0,0 +1,22 @@ +#!/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.1 2014/03/03 13:47:10 polynomial-c Exp $ + +config_file="/etc/siproxd.conf" + +pidfile="/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 +} |