summaryrefslogtreecommitdiff
blob: 88ba0331f466640acba2c9be81e4b6d60bcac7bd (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
#!/sbin/runscript
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

depend() {
	need net
}

check_config() {
	if [[ ! -f /etc/siproxd.conf ]]; then
		eerror "Please create /etc/siproxd.conf first!"
		return 1
	fi
	return 0
}

start() {
	check_config || return 1
	checkpath -q -d /var/run/siproxd -o siproxd:siproxd
	ebegin "Starting siproxd"
	start-stop-daemon --start --exec /usr/sbin/siproxd -- \
		-p /var/run/siproxd/siproxd.pid -c /etc/siproxd.conf
	eend $?
}

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