summaryrefslogtreecommitdiff
blob: f692395e130465155d8a6fc2c860d2f70f11a934 (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
26
27
28
29
30
31
32
33
34
#!/sbin/runscript
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

depend() {
	need net
}

check_config() {
	out=`(/usr/sbin/sip-router -f ${CONFIGFILE} -c > /dev/null || true) 2>&1`
	echo "$out" | grep -q 'config file ok, exiting...'
	if [ "$?" == 1 ]; then
		echo -e "There are errors in the configuration. Please fix them first"
		echo -e "\n$out\n"
		return 1
	fi
}

start() {
	check_config || return 1
	ebegin "Starting sip-router"
	start-stop-daemon --start --quiet --pidfile /var/run/sip-router.pid \
		--exec /usr/sbin/sip-router -- -P /var/run/sip-router.pid \
                ${SR_OPTS}
	eend $?
}

stop() {
	ebegin "Stopping sip-router"
	start-stop-daemon --stop --quiet --pidfile /var/run/sip-router.pid
	eend $?
}