summaryrefslogtreecommitdiff
blob: cd3dd277d54900b079d2910c28b150b6d21f9bdd (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
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/dante/files/dante-sockd-init,v 1.3 2004/03/06 03:29:17 vapier Exp $

depend() {
	need net
}

checkconfig() {
	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/example"
		return 1
	fi
}

start() {
	checkconfig || return 1
	ebegin "Starting dante sockd"
	start-stop-daemon --start --quiet --pidfile /var/run/sockd.pid \
		--make-pidfile --background --exec /usr/sbin/sockd
	eend $? "Failed to start sockd"
}

stop() {
	ebegin "Stopping dante sockd"
	start-stop-daemon --stop --quiet --pidfile /var/run/sockd.pid
	eend $? "Failed to stop sockd"
	# clean stale pidfile
	[ -f /var/run/sockd.pid ] && rm -f /var/run/sockd.pid
}