b721c92221
SVN-Revision: 36838
26 lines
262 B
Bash
Executable File
26 lines
262 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
|
|
START=19
|
|
|
|
boot() {
|
|
# Be silent on boot, firewall might be started by hotplug already,
|
|
# so don't complain in syslog.
|
|
fw3 -q start
|
|
}
|
|
|
|
start() {
|
|
fw3 start
|
|
}
|
|
|
|
stop() {
|
|
fw3 flush
|
|
}
|
|
|
|
restart() {
|
|
fw3 restart
|
|
}
|
|
|
|
reload() {
|
|
fw3 reload
|
|
}
|