#!/sbin/runscript # Copyright 2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 start() { ebegin "Starting nntp//rss" start-stop-daemon --start --background --quiet --exec /usr/sbin/nntprss eend $? } stop() { ebegin "Stopping nntp//rss" start-stop-daemon --stop --quiet --exec /usr/sbin/nntprss eend $? }