summaryrefslogtreecommitdiff
path: root/community/pound/pound.runit
blob: 2e0be991ebe0a9a260b230a44465e8d17616cc4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/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