Added an example of cron script to daily reload iptables
Signed-off-by: Gregory Colpart <reg@evolix.fr>systemd
parent
821af4d12f
commit
44739ce82a
|
@ -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
|
||||
|
Loading…
Reference in New Issue