aboutsummaryrefslogtreecommitdiffstats
path: root/main/clamav/freshclam.initd
blob: 279b5290666e19de3f768a2c205c7185250a42c7 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/sbin/openrc-run

CONF=/etc/clamav/freshclam.conf

pidfile=/run/clamav/freshclam.pid
command=/usr/bin/freshclam
extra_started_commands="reload"
extra_commands="logfix"
required_files=$CONF

depend() {
	need net
	after firewall
}

start_pre() {
	local pid=`awk '$1 == "PidFile" { print $2 }' $CONF`
	local owner=`awk '$1 == "DatabaseOwner" { print $2 }' $CONF`
	[ "x$pid" != "x" ] && pidfile=$pid
	checkpath --directory --owner ${owner:-clamav} \
		--mode 750 ${pidfile%/*}
}

start() {
	ebegin "Starting freshclam"
	start-stop-daemon --start --quiet \
		--nicelevel ${FRESHCLAM_NICELEVEL:-0} \
		--exec $command \
		-- \
		--daemon \
		--pid=$pidfile
	eend $?
}

reload() {
	ebegin "Reloading ${SVCNAME}"
	start-stop-daemon --signal HUP --pidfile $pidfile --name $SVCNAME
	eend $?
}

logfix() {
	# fix freshclam log permissions
	# (might be clobbered by logrotate or something)
	logfile=$(awk '$1 == "UpdateLogFile" { print $2 }' $CONF)
	local freshclam_user=$(awk '$1 == "DatabaseOwner" { print $2 }' $CONF)
	if [ -n "${logfile}" -a -n "${clamav_user}" ]; then
		if [ ! -f "${logfile}" ]; then
			touch ${logfile}
		fi	
		chown ${freshclam_user} ${logfile}
		chmod 640 ${logfile}
	fi
}