Files
bpfire/src/initscripts/packages/clamav
Peter Müller 66c3619872 Early spring clean: Remove trailing whitespaces, and correct licence headers
Bumping across one of our scripts with very long trailing whitespaces, I
thought it might be a good idea to clean these up. Doing so, some
missing or inconsistent licence headers were fixed.

There is no need in shipping all these files en bloc, as their
functionality won't change.

Signed-off-by: Peter Müller <peter.mueller@ipfire.org>
2022-02-18 23:54:57 +00:00

92 lines
3.0 KiB
Bash

#!/bin/sh
###############################################################################
# #
# IPFire.org - A linux based firewall #
# Copyright (C) 2007-2022 IPFire Team <info@ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation, either version 3 of the License, or #
# (at your option) any later version. #
# #
# This program is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
# #
###############################################################################
. /etc/sysconfig/rc
. $rc_functions
case "$1" in
start)
if [ $(basename $0) == "clamav" ]; then
boot_mesg "Starting Clamav Definition Updater..."
loadproc /usr/bin/freshclam -d -c 10
COUNTER=0
while [ "$COUNTER" -lt "61" ]; do
[ -e "/var/lib/clamav/main.cld" ] || \
[ -e "/var/lib/clamav/main.cvd" ] && \
[ -e "/var/lib/clamav/bytecode.cld" ] || \
[ -e "/var/lib/clamav/bytecode.cvd" ] && \
[ -e "/var/lib/clamav/daily.cld" ] || \
[ -e "/var/lib/clamav/daily.cvd" ] && \
break
if [ "$COUNTER" -lt "1" ]; then
boot_mesg -n "Downloading database"
else
boot_mesg -n "."
fi
sleep 15
COUNTER=$(($COUNTER + 1))
done
if [ "$COUNTER" -gt "0" ]; then
boot_mesg
fi
if [ "$COUNTER" -gt "60" ]; then
boot_mesg "Download takes longer than 15min check freshclam status!"
echo_failure;
exit 1;
fi
boot_mesg "Starting Clamav Daemon..."
loadproc /usr/sbin/clamd
else
boot_mesg "Starting Clamav in background..."
/etc/init.d/clamav start > /dev/tty12 < /dev/tty12 &
echo_ok;
exit 0;
fi
;;
stop)
boot_mesg "Stopping Clamav Definition Updater..."
killproc /usr/bin/freshclam
rm -rf /var/lib/clamav/*.tmp
boot_mesg "Stopping Clamav Daemon..."
killproc /usr/sbin/clamd
;;
restart)
$0 stop
sleep 1
$0 start
;;
status)
statusproc /usr/sbin/clamd
statusproc /usr/bin/freshclam
;;
*)
echo "Usage: $0 {start|stop|restart|status}"
exit 1
;;
esac