bbfdm/test/files/usr/libexec/rpcd/test

17 lines
318 B
Bash
Executable file

#!/bin/sh
. /usr/share/libubox/jshn.sh
case "$1" in
list)
echo '{ "status" : {} }'
;;
call)
case "$2" in
status)
cat /tmp/test_status.data
;;
esac
;;
esac