summaryrefslogtreecommitdiffstats
path: root/unstable/kamailio/kamailio.initd
blob: aaea95b3ee99d180f3380982266b521762da24e3 (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
#!/sbin/runscript

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

depend() {
	need net
}

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

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