summaryrefslogtreecommitdiff
path: root/etc/rc.d/ipfw
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2004-04-28 13:20:15 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2004-04-28 13:20:15 +0000
commitd8337944e0fe447407a0a7fb1df8d2e8024b0836 (patch)
treebd2ebeaaface80df3276878be90005aafb6f3b0f /etc/rc.d/ipfw
parent8956ceaff076760eb051cd37f060453be0e28406 (diff)
Notes
Diffstat (limited to 'etc/rc.d/ipfw')
-rw-r--r--etc/rc.d/ipfw8
1 files changed, 6 insertions, 2 deletions
diff --git a/etc/rc.d/ipfw b/etc/rc.d/ipfw
index 990c14ead4eb..2e8100c2b8a0 100644
--- a/etc/rc.d/ipfw
+++ b/etc/rc.d/ipfw
@@ -37,7 +37,9 @@ ipfw_start()
if [ -r "${firewall_script}" ]; then
. "${firewall_script}"
echo -n 'Firewall rules loaded, starting divert daemons:'
- /etc/rc.d/natd start
+ if [ -f /etc/rc.d/natd ] ; then
+ /etc/rc.d/natd start
+ fi
elif [ "`ipfw l 65535`" = "65535 deny ip from any to any" ]; then
echo 'Warning: kernel has firewall functionality, but' \
' firewall rules are not enabled.'
@@ -62,7 +64,9 @@ ipfw_stop()
# Disable the firewall
#
${SYSCTL_W} net.inet.ip.fw.enable=0
- /etc/rc.d/natd stop
+ if [ -f /etc/rc.d/natd ] ; then
+ /etc/rc.d/natd stop
+ fi
}
load_rc_config $name