diff --git a/cron_minifirewall b/cron_minifirewall new file mode 100755 index 0000000..88e3d9d --- /dev/null +++ b/cron_minifirewall @@ -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 +