mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36838 3c298f89-4303-0410-b956-a3cf2f4a3e73
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
|
|
}
|