blob: 26855f39ada9e0511e17442fbb7efd8b8642db14 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | #!/bin/sh /etc/rc.common
# Copyright (C) 2008 OpenWrt.org
START=45
start() {
	. /lib/firewall/uci_firewall.sh
	fw_init
}
stop() {
	. /lib/firewall/uci_firewall.sh
	fw_stop	
}
 |