#!/sbin/runscript # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ # Copyright 2004 Andrei Mikhailovsky @ Arhont Ltd - Information Security http://www.arhont.com depend() { need net after cron } start() { ebegin "Starting munin-node" start-stop-daemon --quiet --start --pidfile /var/run/munin/munin-node.pid --exec /usr/sbin/munin-node eend $? } stop() { ebegin "Stopping munin-node" start-stop-daemon --quiet --stop --pidfile /var/run/munin/munin-node.pid eend $? }