blob: 9d7fae75808be97ee53ee146c712b606a4d9dc6f (
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-2005 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
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 $?
}
|