#!/sbin/runscript # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 depend(){ need net after squid } start() { ebegin "Starting samsdaemon" start-stop-daemon --start --quiet --exec /usr/bin/samsdaemon eend $? } stop() { ebegin "Stopping samsdaemon" start-stop-daemon --stop --quiet --retry 5 --name samsdaemon eend $? }