]> git.ipfire.org Git - people/stevee/ipfire-2.x.git/blob - src/initscripts/packages/clamav
Early spring clean: Remove trailing whitespaces, and correct licence headers
[people/stevee/ipfire-2.x.git] / src / initscripts / packages / clamav
1 #!/bin/sh
2 ###############################################################################
3 # #
4 # IPFire.org - A linux based firewall #
5 # Copyright (C) 2007-2022 IPFire Team <info@ipfire.org> #
6 # #
7 # This program is free software: you can redistribute it and/or modify #
8 # it under the terms of the GNU General Public License as published by #
9 # the Free Software Foundation, either version 3 of the License, or #
10 # (at your option) any later version. #
11 # #
12 # This program is distributed in the hope that it will be useful, #
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15 # GNU General Public License for more details. #
16 # #
17 # You should have received a copy of the GNU General Public License #
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
19 # #
20 ###############################################################################
21
22 . /etc/sysconfig/rc
23 . $rc_functions
24
25 case "$1" in
26 start)
27 if [ $(basename $0) == "clamav" ]; then
28 boot_mesg "Starting Clamav Definition Updater..."
29 loadproc /usr/bin/freshclam -d -c 10
30
31 COUNTER=0
32 while [ "$COUNTER" -lt "61" ]; do
33 [ -e "/var/lib/clamav/main.cld" ] || \
34 [ -e "/var/lib/clamav/main.cvd" ] && \
35 [ -e "/var/lib/clamav/bytecode.cld" ] || \
36 [ -e "/var/lib/clamav/bytecode.cvd" ] && \
37 [ -e "/var/lib/clamav/daily.cld" ] || \
38 [ -e "/var/lib/clamav/daily.cvd" ] && \
39 break
40 if [ "$COUNTER" -lt "1" ]; then
41 boot_mesg -n "Downloading database"
42 else
43 boot_mesg -n "."
44 fi
45 sleep 15
46 COUNTER=$(($COUNTER + 1))
47 done
48 if [ "$COUNTER" -gt "0" ]; then
49 boot_mesg
50 fi
51 if [ "$COUNTER" -gt "60" ]; then
52 boot_mesg "Download takes longer than 15min check freshclam status!"
53 echo_failure;
54 exit 1;
55 fi
56
57 boot_mesg "Starting Clamav Daemon..."
58 loadproc /usr/sbin/clamd
59 else
60 boot_mesg "Starting Clamav in background..."
61 /etc/init.d/clamav start > /dev/tty12 < /dev/tty12 &
62 echo_ok;
63 exit 0;
64 fi
65 ;;
66
67 stop)
68 boot_mesg "Stopping Clamav Definition Updater..."
69 killproc /usr/bin/freshclam
70 rm -rf /var/lib/clamav/*.tmp
71
72 boot_mesg "Stopping Clamav Daemon..."
73 killproc /usr/sbin/clamd
74 ;;
75
76 restart)
77 $0 stop
78 sleep 1
79 $0 start
80 ;;
81
82 status)
83 statusproc /usr/sbin/clamd
84 statusproc /usr/bin/freshclam
85 ;;
86
87 *)
88 echo "Usage: $0 {start|stop|restart|status}"
89 exit 1
90 ;;
91 esac