From e0e6d1029e7c3a27edaa5affedbcce7bbeb96abc Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Fri, 15 Jul 2011 14:57:44 +0000 Subject: base-files: use uci_toggle_state() to prevent unwanted aggregation of state vars (#9711) SVN-Revision: 27616 --- package/base-files/files/etc/hotplug.d/iface/00-netstate | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'package/base-files/files/etc/hotplug.d/iface/00-netstate') diff --git a/package/base-files/files/etc/hotplug.d/iface/00-netstate b/package/base-files/files/etc/hotplug.d/iface/00-netstate index e2e5845..37b1e93 100644 --- a/package/base-files/files/etc/hotplug.d/iface/00-netstate +++ b/package/base-files/files/etc/hotplug.d/iface/00-netstate @@ -1,5 +1,5 @@ [ ifup = "$ACTION" ] && { - uci_set_state network "$INTERFACE" up 1 - uci_set_state network "$INTERFACE" connect_time $(sed -ne 's![^0-9].*$!!p' /proc/uptime) - [ -n "$DEVICE" ] && uci_set_state network "$INTERFACE" ifname "$DEVICE" + uci_toggle_state network "$INTERFACE" up 1 + uci_toggle_state network "$INTERFACE" connect_time $(sed -ne 's![^0-9].*$!!p' /proc/uptime) + [ -n "$DEVICE" ] && uci_toggle_state network "$INTERFACE" ifname "$DEVICE" } -- cgit v1.1