#!/sbin/runscript # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-process/vixie-cron/files/vixie-cron.rc6,v 1.2 2005/06/09 01:35:44 ka0ttic Exp $ depend() { use net } start() { ebegin "Starting vch" start-stop-daemon --start --quiet --pidfile /var/run/vch.pid --exec /opt/vch/vch.sh & eend $? } stop() { ebegin "Stopping vch" start-stop-daemon --stop --quiet --pidfile /var/run/vch.pid eend $? }