Einige CGIs gefixt, SNORT wird beim Systemstart gestartet

git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@629 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
This commit is contained in:
maniacikarus
2007-06-14 18:56:04 +00:00
parent 0e772a80d8
commit 4e17adadcd
6 changed files with 39 additions and 41 deletions

View File

@@ -121,8 +121,11 @@ case "${DO}" in
fi
fi
boot_mesg "Setting OVPN Rules if enabled"
/etc/rc.d/init.d/firewall startovpn; evaluate_retval
boot_mesg "Setting OpenVPN Rules if enabled"
/etc/rc.d/init.d/firewall startovpn; evaluate_retval
boot_mesg "Starting SNORT if enabled"
/etc/rc.d/init.d/snort start; evaluate_retval
;;
stop)
@@ -153,8 +156,11 @@ case "${DO}" in
fi
fi
boot_mesg "Deleting OVPN Rules if enabled"
boot_mesg "Deleting OpenVPN Rules if enabled"
/etc/rc.d/init.d/firewall stopovpn; evaluate_retval
boot_mesg "Starting SNORT if enabled"
/etc/rc.d/init.d/snort stop; evaluate_retval
;;
restart)