1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-08-21 20:00:15 +03:00
openwrt-xburst/package/firewall/files/firewall.init

30 lines
243 B
Plaintext
Raw Normal View History

#!/bin/sh /etc/rc.common
# Copyright (C) 2008 OpenWrt.org
START=45
FW_LIBDIR=/lib/firewall
fw() {
. $FW_LIBDIR/core.sh
fw_$1
}
boot() { :; }
start() {
fw start
}
stop() {
fw stop
}
restart() {
fw restart
}
reload() {
fw reload
}