diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-02-12 02:06:57 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-02-12 02:06:57 +0000 |
commit | 8f103736e7503b503ea4d9324df328a2a5106ff0 (patch) | |
tree | 195407ca522b7007196d2471090fed8068588b83 /package/base-files/files/lib | |
parent | 21a25fd0e3c8573a20664946e07d7a059483fff1 (diff) | |
download | upstream-8f103736e7503b503ea4d9324df328a2a5106ff0.tar.gz upstream-8f103736e7503b503ea4d9324df328a2a5106ff0.tar.bz2 upstream-8f103736e7503b503ea4d9324df328a2a5106ff0.zip |
[package] base-files: revert dhcp state information on ifdown and restore pre-r19530 behaviour in udhcp default.script
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19597 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/files/lib')
-rwxr-xr-x | package/base-files/files/lib/network/config.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/package/base-files/files/lib/network/config.sh b/package/base-files/files/lib/network/config.sh index 12b08a29ff..b7d7b259a9 100755 --- a/package/base-files/files/lib/network/config.sh +++ b/package/base-files/files/lib/network/config.sh @@ -327,6 +327,11 @@ setup_interface() { } } +stop_interface_dhcp() { + local config="$1" + uci -P /var/state revert "network.$config" +} + unbridge() { local dev="$1" local brdev |