mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-15 13:32:59 +02:00
Clamav-Fixes.
Clamavctrl gebaut & Initscript geschrieben. git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@513 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
This commit is contained in:
41
src/initscripts/init.d/clamav
Normal file
41
src/initscripts/init.d/clamav
Normal file
@@ -0,0 +1,41 @@
|
||||
#!/bin/sh
|
||||
# Begin $rc_base/init.d/clamav
|
||||
|
||||
. /etc/sysconfig/rc
|
||||
. $rc_functions
|
||||
|
||||
case "$1" in
|
||||
start)
|
||||
boot_mesg "Starting Clamav Definition Updater..."
|
||||
loadproc /usr/bin/freshclam -d -c 10
|
||||
|
||||
boot_mesg "Starting Clamav Daemon..."
|
||||
loadproc /usr/sbin/clamd
|
||||
;;
|
||||
|
||||
stop)
|
||||
boot_mesg "Stopping Clamav Definition Updater..."
|
||||
killproc /usr/bin/freshclam
|
||||
|
||||
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
|
||||
|
||||
# End $rc_base/init.d/clamav
|
||||
Reference in New Issue
Block a user