summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2013-09-13 14:51:44 +0200
committerJo-Philipp Wich <jow@openwrt.org>2013-09-13 14:51:44 +0200
commitc171d9c5a1c1320e53183f425fa9b82682eeaa51 (patch)
tree66764859b192306326b6a8cdf6630d3dbd6c665a
parent3864c083a42e713e291bd954b2fa6fe2b85e930a (diff)
ubus: fix session example script to conform to new rpc protocol
-rwxr-xr-xsession-test.sh11
1 files changed, 7 insertions, 4 deletions
diff --git a/session-test.sh b/session-test.sh
index bfe6657..e7666cc 100755
--- a/session-test.sh
+++ b/session-test.sh
@@ -2,11 +2,11 @@
. /usr/share/libubox/jshn.sh
json_load "$(ubus call session create)"
-json_get_var sid sid
+json_get_var sid ubus_rpc_session
json_init
-json_add_string sid "$sid"
+json_add_string ubus_rpc_session "$sid"
json_add_array "objects"
json_add_array ""
json_add_string "" "session"
@@ -23,11 +23,12 @@ wget -q -O- \
"jsonrpc": "2.0",
"method" : "call",
"params" : [
+ "'$sid'",
"session",
"test",
{},
]
- }' "http://localhost:8080/ubus/$sid"
+ }' "http://localhost:8080/ubus"
echo "Request 2"
wget -q -O- \
--post-data='[
@@ -35,6 +36,7 @@ wget -q -O- \
"jsonrpc": "2.0",
"method" : "call",
"params" : [
+ "'$sid'",
"session",
"list",
{},
@@ -44,9 +46,10 @@ wget -q -O- \
"jsonrpc": "2.0",
"method" : "call",
"params" : [
+ "'$sid'",
"session",
"test",
{},
]
},
- ]' "http://localhost:8080/ubus/$sid"
+ ]' "http://localhost:8080/ubus"