freebsd-ports/mail/mailscanner/files/patch-bin:cron:update_virus_scanners.cron
Sergey Matveychuk 6412e0ec80 - Introduce a few more maintanence scripts
- Fix a bug in a startup script
- Add files/CHANGES.port where store history of the port changes

PR:		ports/93420
Submitted by:	maintainer
2006-02-16 16:34:56 +00:00

38 lines
1.3 KiB
Text

--- ../MailScanner-install-4.50.15.orig/bin/cron/update_virus_scanners.cron Wed Feb 15 20:02:33 2006
+++ bin/cron/update_virus_scanners.cron Wed Feb 15 20:11:17 2006
@@ -1,20 +1,24 @@
#!/bin/bash
-# Insert a random delay up to this value, to spread virus updates round
-# the clock. 1800 seconds = 30 minutes.
-# Set this to 0 to disable it.
-UPDATEMAXDELAY=600
-if [ -f /etc/sysconfig/MailScanner ] ; then
- . /etc/sysconfig/MailScanner
-fi
-export UPDATEMAXDELAY
+# Add the following line to /etc/rc.conf to configure a maximum delay in
+# order to spread virus updates round the clock. 1800 seconds = 30 minutes.
+# Set this to 0 to disable it
+
+. /usr/local/etc/rc.subr
+
+name="mailscanner"
+rcvar=`set_rcvar`
+
+load_rc_config $name
+
+: ${mailscanner_updatemaxdelay="600"}
[ -x /opt/MailScanner/bin/update_virus_scanners ] || exit 0
-if [ "x$UPDATEMAXDELAY" = "x0" ]; then
+if [ "x${mailscanner_updatemaxdelay}" = "x0" ]; then
:
else
- logger -p mail.info -t update.virus.scanners Delaying cron job up to $UPDATEMAXDELAY seconds
- perl -e "sleep int(rand($UPDATEMAXDELAY));"
+ logger -p mail.info -t update.virus.scanners Delaying cron job up to ${mailscanner_updatemaxdelay} seconds
+ perl -e "sleep int(rand(${mailscanner_updatemaxdelay}));"
fi
exec /opt/MailScanner/bin/update_virus_scanners
exit 0