netifd: remove connect_time from /var/state, it is unused
[openwrt.git] / package / network / config / netifd / files / sbin / devstatus
1 #!/bin/sh
2 . /usr/share/libubox/jshn.sh
3 DEVICE="$1"
4
5 [ -n "$DEVICE" ] || {
6         echo "Usage: $0 <device>"
7         exit 1
8 }
9
10 json_init
11 json_add_string name "$DEVICE"
12 ubus call network.device status "$(json_dump)"