Archived
1
0
This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Files
archive/package/firewall/files/firewall.init
Jo-Philipp Wich 49755bbe57 [backfire] merge dual stack firewall
SVN-Revision: 25353
2011-02-03 22:02:59 +00:00

28 lines
233 B
Bash
Executable File

#!/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
}