#!/sbin/runscript # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-analyzer/vnstat/files/vnstatd.initd,v 1.6 2012/01/01 01:19:16 idl0r Exp $ start() { ebegin "Starting telldusd" start-stop-daemon --start --quiet \ --pidfile /var/run/telldusd.pid \ --exec /usr/sbin/telldusd eend $? } stop() { ebegin "Stopping telldusd" start-stop-daemon --stop --quiet \ --pidfile /var/run/telldusd.pid eend $? }