mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-24 15:56:49 +00:00
02b0c62f33
SVN-Revision: 35643
18 lines
207 B
Bash
Executable File
18 lines
207 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 stop
|
|
}
|