1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

[package] base-files: fix udhcpc address acquisition on network restart (patch by Scott Dudley)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19530 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
jow
2010-02-05 07:57:07 +00:00
parent c3277b358c
commit 767efecb56
2 changed files with 3 additions and 2 deletions

View File

@@ -31,7 +31,8 @@ setup_interface () {
config_get old_subnet "$ifc" netmask
}
[ "$ip" != "$old_ip" ] \
[ "$1" = "ifup" ] \
|| [ "$ip" != "$old_ip" ] \
|| [ "${broadcast:-+}" != "$old_broadcast" ] \
|| [ "${subnet:-255.255.255.0}" != "$old_subnet" ] && {
echo "udhcpc: ifconfig $interface $ip netmask ${subnet:-255.255.255.0} broadcast ${broadcast:-+}"