blob: be8aa16e4972c0a8b9f066e99a9667ad7bfb8259 (
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/runscript
extra_started_commands="reload"
extra_commands="logfix"
command=/usr/bin/freshclam
pidfile=/var/run/clamav/freshclam.pid
CONF=/etc/clamav/freshclam.conf
depend() {
need net
after firewall
}
start() {
ebegin "Starting freshclam"
start-stop-daemon --start --quiet \
--nicelevel ${FRESHCLAM_NICELEVEL:-0} \
--exec $command \
-- \
--daemon \
--pid=$pidfile
eend $?
}
stop() {
ebegin "Stopping freshclam"
start-stop-daemon --stop --quiet --pidfile $pidfile
eend $?
}
reload() {
ebegin "Reloading freshclam"
start-stop-daemon --stop --signal HUP \
--exec $command --pidfile $pidfile
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
}
|