#!/sbin/runscript # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/files/nfsmount,v 1.6 2005/03/23 04:12:57 eradicator Exp $ depend() { need net portmap } start() { ebegin "Starting rpc.rstatd" start-stop-daemon --start --quiet --exec /usr/sbin/rpc.rstatd 1>&2 eend $? "Error starting rpc.rstatd" } stop() { ebegin "Stopping rpc.rstatd" start-stop-daemon --stop --quiet --exec /usr/sbin/rpc.rstatd 1>&2 eend $? "Error stopping rpc.rstatd" }