mirror of
https://dev.iopsys.eu/bbf/icwmp.git
synced 2025-12-10 07:44:41 +01:00
17 lines
340 B
Bash
Executable file
17 lines
340 B
Bash
Executable file
#!/bin/sh
|
|
|
|
. /usr/share/libubox/jshn.sh
|
|
|
|
case "$1" in
|
|
list)
|
|
echo '{ "status" : {} }'
|
|
;;
|
|
call)
|
|
case "$2" in
|
|
status)
|
|
cat /tmp/network.interface.wan.data 2>/dev/null
|
|
;;
|
|
esac
|
|
;;
|
|
esac
|
|
|