You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
. /usr/share/libubox/jshn.sh
|
|
DEVICE="$1"
|
|
|
|
[ -n "$DEVICE" ] || {
|
|
echo "Usage: $0 <device>"
|
|
exit 1
|
|
}
|
|
|
|
json_init
|
|
json_add_string name "$DEVICE"
|
|
ubus call network.device status "$(json_dump)"
|
|
|