mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-27 11:13:24 +02:00
clamav initskript boot's clamav in background now
This commit is contained in:
@@ -196,7 +196,6 @@
|
|||||||
* misc-progs
|
* misc-progs
|
||||||
* mkinitcpio-0.5.9
|
* mkinitcpio-0.5.9
|
||||||
* mktemp-1.5
|
* mktemp-1.5
|
||||||
* mldonkey-2.9.2
|
|
||||||
* mldonkey-2.9.6
|
* mldonkey-2.9.6
|
||||||
* module-init-tools-3.5
|
* module-init-tools-3.5
|
||||||
* mpc-0.12.1
|
* mpc-0.12.1
|
||||||
|
|||||||
@@ -6,19 +6,27 @@
|
|||||||
|
|
||||||
case "$1" in
|
case "$1" in
|
||||||
start)
|
start)
|
||||||
boot_mesg "Starting Clamav Definition Updater..."
|
if [ $(basename $0) == "clamav" ]; then
|
||||||
loadproc /usr/bin/freshclam -d -c 10
|
boot_mesg "Starting Clamav Definition Updater..."
|
||||||
|
loadproc /usr/bin/freshclam -d -c 10
|
||||||
|
|
||||||
boot_mesg "Starting Clamav Daemon..."
|
boot_mesg "Starting Clamav Daemon..."
|
||||||
COUNTER=0
|
COUNTER=0
|
||||||
while [ "$COUNTER" -lt "30" ]; do
|
while [ "$COUNTER" -lt "30" ]; do
|
||||||
[ -e "/usr/share/clamav/main.cvd" ] && \
|
[ -e "/usr/share/clamav/main.cvd" ] && \
|
||||||
[ -e "/usr/share/clamav/daily.c*d" ] && \
|
[ -e "/usr/share/clamav/daily.cvd" ] || \
|
||||||
break
|
[ -e "/usr/share/clamav/daily.cld" ] && \
|
||||||
sleep 5
|
break
|
||||||
COUNTER=$(($COUNTER + 1))
|
sleep 5
|
||||||
done
|
COUNTER=$(($COUNTER + 1))
|
||||||
loadproc /usr/sbin/clamd
|
done
|
||||||
|
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)
|
stop)
|
||||||
|
|||||||
Reference in New Issue
Block a user