You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
233 B
28 lines
233 B
17 years ago
|
#!/bin/sh /etc/rc.common
|
||
15 years ago
|
# Copyright (C) 2008-2010 OpenWrt.org
|
||
17 years ago
|
|
||
|
START=45
|
||
|
|
||
15 years ago
|
FW_LIBDIR=/lib/firewall
|
||
|
|
||
|
fw() {
|
||
|
. $FW_LIBDIR/core.sh
|
||
|
fw_$1
|
||
|
}
|
||
|
|
||
17 years ago
|
start() {
|
||
15 years ago
|
fw start
|
||
17 years ago
|
}
|
||
|
|
||
|
stop() {
|
||
15 years ago
|
fw stop
|
||
|
}
|
||
|
|
||
|
restart() {
|
||
|
fw restart
|
||
|
}
|
||
|
|
||
|
reload() {
|
||
|
fw reload
|
||
17 years ago
|
}
|