base-files: the initial hotplug2 instance sometimes misses a few relevant events...
[openwrt.git] / package / 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)"
This page took 0.039774 seconds and 5 git commands to generate.