#!/sbin/runscript # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # $Header: /var/cvsroot/gentoo-x86/net-ftp/proftpd/files/proftpd.rc6,v 1.3 2001/12/06 20:17:02 azarah Exp $ depend() { need net } checkconfig() { if [ ! -e /etc/proftpd/proftpd.conf ] ; then eerror "You need an /etc/proftpd/proftpd.conf file first" eerror "There is a sample file in /usr/share/doc/proftpd" return 1 fi } start() { checkconfig || return 1 ebegin "Starting proftpd" start-stop-daemon --start --quiet --exec /usr/sbin/proftpd -- -d -p /var/run/proftpd.pid eend $? } stop() { ebegin "Stopping proftpd" start-stop-daemon --stop --quiet --pidfile /var/run/proftpd.pid eend $? }