#!/sbin/runscript # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-fs/sfs/files/sfscd,v 1.3 2004/07/14 23:39:36 agriffis Exp $ depend() { need net portmap } start() { ebegin "Starting SFS client daemon" start-stop-daemon --start --quiet --exec /sbin/sfscd 1>&2 eend $? } stop() { ebegin "Stopping SFS client daemon" start-stop-daemon --stop --quiet --exec /sbin/sfscd 1>&2 eend $? }