aboutsummaryrefslogtreecommitdiffstats
path: root/main/varnish/varnishlog.initd
blob: ebbf52ec4da3b16c7fd4f8b85eeb5c1b33e36ed9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/sbin/openrc-run
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

VARNISHLOG_PID=${VARNISHLOG_PID:-/run/${SVCNAME}.pid}

command="${VARNISHLOG:-/usr/bin/varnishlog}"
command_args="-D -P ${VARNISHLOG_PID} ${VARNISHLOG_OPTS}"
pidfile="${VARNISHLOG_PID}"

extra_started_commands="reload rotate flush"

description_rotate="Rotate the log file"
description_flush="Flush any outstanding transactions"

rotate() {
	ebegin "Rotating log file"
	start-stop-daemon -p ${VARNISHLOG_PID} -s SIGHUP
	eend $?
}

flush() {
	ebegin "Flushing any outstanding transactions"
	start-stop-daemon -p ${VARNISHLOG_PID} -s SIGUSR1
	eend $?
}

reload() {
	flush
	rotate
}