PKGBUILDs/community/pound/pound.runit
2009-10-09 21:15:33 -05:00

24 lines
363 B
Bash
Executable file

#!/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