mirror of https://github.com/hak5/openwrt.git
28 lines
233 B
Plaintext
28 lines
233 B
Plaintext
|
#!/bin/sh /etc/rc.common
|
||
|
# Copyright (C) 2008-2010 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
|
||
|
}
|