#!/sbin/runscript # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/ start() { ebegin "Starting Gizmo Daemon" start-stop-daemon --start --quiet --background --exec /usr/bin/gizmod >/dev/null 2>&1 eend ${?} } stop() { ebegin "Stopping Gizmo Daemon" start-stop-daemon --stop --exec /usr/bin/gizmod > /dev/null 2>&1 eend ${?} }