blob: 336432f938fe9c8abdf8f16485bee433564550d5 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-proxy/dante/files/dante-sockd-init,v 1.5 2009/02/28 09:53:42 mrness Exp $
SOCKD_OPT="-D"
[ "${SOCKD_FORKDEPTH:-1}" -gt 1 ] && SOCKD_OPT="${SOCKD_OPT} -N ${SOCKD_FORKDEPTH}"
[ "${SOCKD_DEBUG:-0}" -eq 1 ] && SOCKD_OPT="${SOCKD_OPT} -d"
[ "${SOCKD_DISABLE_KEEPALIVE:-0}" -eq 1 ] && SOCKD_OPT="${SOCKD_OPT} -n"
PIDFILE=/var/run/sockd.pid
depend() {
need net
}
checkconfig() {
# first check that it exists
if [ ! -f /etc/socks/sockd.conf ] ; then
eerror "You need to setup /etc/socks/sockd.conf first"
eerror "Examples are in /usr/share/doc/dante[version]/example"
eerror "for more info, see: man sockd.conf"
return 1
fi
/usr/sbin/sockd -V 2>&1 >/tmp/dante-sockd.checkconf
if [ $? -ne 0 ]; then
cat /tmp/dante-sockd.checkconf
eerror "Something is wrong with your configuration file"
eerror "for more info, see: man sockd.conf"
return 1
fi
rm /tmp/dante-sockd.checkconf
#Create pidfile with owner set to daemon's uid
DAEMON_UID=`sed -e '/^[ \t]*user[.]notprivileged[ \t]*:/{s/.*:[ \t]*//;q};d' /etc/socks/sockd.conf`
if [ -n "$DAEMON_UID" ]; then
touch $PIDFILE && chown $DAEMON_UID $PIDFILE
fi
return 0
}
start() {
checkconfig || return 1
ebegin "Starting dante sockd"
start-stop-daemon --start --quiet --pidfile $PIDFILE \
--make-pidfile --exec /usr/sbin/sockd -- ${SOCKD_OPT} 2>&1 >/dev/null
eend $? "Failed to start sockd"
}
stop() {
ebegin "Stopping dante sockd"
start-stop-daemon --stop --quiet --pidfile $PIDFILE
eend $? "Failed to stop sockd"
}
|