firewall.init 207 B

1234567891011121314151617
  1. #!/bin/sh /etc/rc.common
  2. START=19
  3. boot() {
  4. # Be silent on boot, firewall might be started by hotplug already,
  5. # so don't complain in syslog.
  6. fw3 -q start
  7. }
  8. start() {
  9. fw3 start
  10. }
  11. stop() {
  12. fw3 stop
  13. }