From 23fed47639dd4dffa477b226cc9a28075511c925 Mon Sep 17 00:00:00 2001 From: OpenGnSys Support Team Date: Wed, 29 May 2019 12:10:19 +0200 Subject: #915 add POST poweroff command to REST API in ogAdmServer Power off a client (through POST method): curl -X POST http://127.0.0.1:8888/poweroff -d @poweroff.json Request POST /poweroff {"clients": [ "192.168.2.1" ] } Reply: 200 OK --- tests/poweroff.json | 1 + tests/run-tests.sh | 1 + 2 files changed, 2 insertions(+) create mode 100644 tests/poweroff.json (limited to 'tests') diff --git a/tests/poweroff.json b/tests/poweroff.json new file mode 100644 index 0000000..4667303 --- /dev/null +++ b/tests/poweroff.json @@ -0,0 +1 @@ +{ "clients" : [ "192.168.2.1", "192.168.2.2" ] } diff --git a/tests/run-tests.sh b/tests/run-tests.sh index 27c7bc6..8736859 100755 --- a/tests/run-tests.sh +++ b/tests/run-tests.sh @@ -4,3 +4,4 @@ curl -X POST http://127.0.0.1:8888/wol -d @wol.json curl -X POST http://127.0.0.1:8888/shell/run -d @post_shell_run.json curl -X POST http://127.0.0.1:8888/shell/output -d @post_shell_output.json curl -X POST http://127.0.0.1:8888/session -d @session.json +curl -X POST http://127.0.0.1:8888/poweroff -d @poweroff.json -- cgit v1.2.3-18-g5258