mirror of https://github.com/hak5/openwrt.git
18 lines
207 B
Plaintext
18 lines
207 B
Plaintext
|
#!/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 stop
|
||
|
}
|