#!/sbin/runscript # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ depend() { before squid } start() { ebegin "Starting squid-cronolog" start-stop-daemon --start --exec /usr/sbin/squid-cronolog \ --pidfile "${PIDFILE}" -- "${PIDFILE}" "${FIFO}" "${LOGS}" eend $? } stop() { ebegin "Stopping squid-cronolog" start-stop-daemon --stop --exec /usr/sbin/squid-cronolog \ --pidfile "${PIDFILE}" eend $? }