aboutsummaryrefslogtreecommitdiff
blob: 484232c675028a3f8ddd0218d0119cd35930b549 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/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 $?
}