#!/sbin/runscript # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # $Header: /home/cvsroot/gentoo-x86/net-misc/dante/files/dante-sockd-init,v 1.2 2003/02/14 23:05:09 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[version]/example" eerror "for info: info sockd.conf" return 1 fi } start() { checkconfig || return 1 ebegin "Starting dante sockd" start-stop-daemon --start --quiet --pidfile /var/run/sockd.pid \ --make-pidfile --exec /usr/sbin/sockd -- -Dn 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 }