mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-24 18:31:53 +02:00
e8be3016c9
- replace uci firewall with a modular dual stack implementation developed by Malte S. Stretz - bump version to 2 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21286 3c298f89-4303-0410-b956-a3cf2f4a3e73
28 lines
228 B
Bash
Executable File
28 lines
228 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2008 OpenWrt.org
|
|
|
|
START=45
|
|
|
|
FW_LIBDIR=/lib/firewall
|
|
|
|
fw() {
|
|
. $FW_LIBDIR/core.sh
|
|
fw_$1
|
|
}
|
|
|
|
start() {
|
|
fw start
|
|
}
|
|
|
|
stop() {
|
|
fw stop
|
|
}
|
|
|
|
restart() {
|
|
fw restart
|
|
}
|
|
|
|
reload() {
|
|
fw reload
|
|
}
|