mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2025-12-10 07:44:50 +01:00
18 lines
229 B
Bash
Executable file
18 lines
229 B
Bash
Executable file
#!/bin/sh
|
|
|
|
. /usr/share/libubox/jshn.sh
|
|
|
|
case "$1" in
|
|
list)
|
|
echo '{ "status" : {} }'
|
|
;;
|
|
call)
|
|
case "$2" in
|
|
status)
|
|
json_load "$(cat /tmp/internet_connection_status 2>/dev/null)"
|
|
json_dump
|
|
;;
|
|
esac
|
|
;;
|
|
esac
|
|
|