#!/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/app-admin/fam-oss/files/fam,v 1.3 2002/03/24 08:31:02 azarah Exp $ depend() { need portmap } start() { ebegin "Starting fam" start-stop-daemon --start --quiet --exec /usr/bin/fam --background \ -- -T 0 -c /etc/fam.conf eend $? } stop() { ebegin "Stopping fam" start-stop-daemon --stop --quiet --exec /usr/bin/fam eend $? }