Added an example of cron script to daily reload iptables

Signed-off-by: Gregory Colpart <reg@evolix.fr>
This commit is contained in:
Colin Darie 2011-03-25 19:08:45 +01:00 committed by Gregory Colpart
parent 821af4d12f
commit 44739ce82a
1 changed files with 14 additions and 0 deletions

14
cron_minifirewall Executable file
View File

@ -0,0 +1,14 @@
#!/bin/sh
# Put this file in /etc/cron.daily/ to reload the firewall
# to refresh ips resolutions
# Make sure this file is executable !
FIREWALL=/etc/init.d/minifirewall
if [ -x "$FIREWALL" ] ; then
$FIREWALL restart >/dev/null
fi
exit 0