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