PKGBUILDs/community/pound/pound.runit

25 lines
363 B
Text
Raw Normal View History

2009-10-10 02:15:33 +00:00
#!/bin/sh
exec 2>&1
# general config
. /etc/rc.conf
. /etc/rc.d/functions
BIN=/usr/sbin/pound
OPTS="-f /etc/pound/pound.cfg -p /var/run/pound.pid"
SVC=pound
PID=`pidof $BIN`
if [ -z "$PID" ]
then
if [ -f /var/run/$SVC.pid ]
then
rm /var/run/$SVC.pid
rm_daemon $SVC
fi
echo "Starting $SVC daemon"
$BIN $OPTS
else
[ -z $PID ] || exec watchpid $PID
fi