summaryrefslogtreecommitdiffstats
path: root/testing/kamailio/kamailio.initd
blob: 51c8c511cfe069d29e6e558d758873dd6769b73a (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
25
#!/sbin/runscript

daemon=/usr/sbin/kamailio
pidfile=/var/run/kamailio/kamailio.pid

depend() {
	need net
	after firewall
}

start() {
	ebegin "Starting Kamailio"
	start-stop-daemon --start --quiet --pidfile $pidfile --exec $daemon \
		-- \
		-u ${KAMAILIO_USER:-kamailio} \
		-g ${KAMAILIO_GROUP:-kamailio} \
		-P $pidfile  
	eend $?
}

stop() {
	ebegin "Stopping Kamailio"
	start-stop-daemon --stop --quiet --pidfile $pidfile
	eend $?
}