#!/sbin/runscript # Copyright 2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 # $Header: $ depend() { need net use dns } start() { ebegin "Starting polipo" start-stop-daemon --start --quiet --background --exec /usr/bin/polipo eend $? } stop() { ebegin "Stopping polipo" start-stop-daemon --stop --quiet --exec /usr/bin/polipo eend $? }