#!/sbin/runscript # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ source /etc/mrgprossv.sh depend() { before local } start() { ebegin "Starting $MERGENAME" rm -rf "$VARMERGE/ipc/"* rm -rf "$VARMERGE/run/"* rm -rf "$VARMERGE/locks/"* rm -rf "$VARMERGE/tmp/"* start-stop-daemon -S -x "$STATICMERGE"/bin/mergeprod eend $? } stop() { ebegin "Stopping $MEREGENAME" start-stop-daemon -K -x "$STATICMERGE"/bin/mergeprod eend $? }