[package] base-files: save the connect time of interfaces in uci state
[openwrt.git] / package / base-files / files / etc / hotplug.d / iface / 00-netstate
index fce5472..a10d871 100644 (file)
@@ -1,6 +1,5 @@
 [ ifup = "$ACTION" ] && {
-       uci set "/var/state/network.$INTERFACE.up=1"
-       [ -z "$DEVICE" ] || {
-               uci set "/var/state/network.$INTERFACE.ifname=$DEVICE"
-       }
+       uci_set_state network "$INTERFACE" up 1 
+       uci_set_state network "$INTERFACE" connect_time $(date +%s)
+       [ -n "$DEVICE" ] && uci_set_state network "$INTERFACE" ifname "$DEVICE"
 }
This page took 0.032925 seconds and 4 git commands to generate.