netifd: set the network device in uci state as well to avoid further remapping issues
[openwrt/staging/mkresin.git] / package / netifd / files / etc / hotplug.d / iface / 00-netstate
1 [ ifup = "$ACTION" ] && {
2 uci_toggle_state network "$INTERFACE" up 1
3 uci_toggle_state network "$INTERFACE" connect_time $(sed -ne 's![^0-9].*$!!p' /proc/uptime)
4 [ -n "$DEVICE" ] && {
5 uci_toggle_state network "$INTERFACE" device "$(uci -q get network.$INTERFACE.ifname)"
6 uci_toggle_state network "$INTERFACE" ifname "$DEVICE"
7 }
8 }