Last change
on this file since e6cfd83 was
1dde02e,
checked in by OpenGnSys Support Team <soporte-og@…>, 6 years ago
|
#915: Add POST /image/restore command to REST API in ogAdmServer
This patch implements the command "image/create" that creates an image
in a client.
Request:
POST /image/restore
{ "clients" : [ "192.168.56.11" ], "disk" : "1", "partition" : "1", "name" : "test", "repository" : "192.168.56.10", "type" : "UNICAST", "filesystem": "1", "image_id": "1"}
Reply:
200 OK
|
-
Property mode set to
100755
|
File size:
1.3 KB
|
Line | |
---|
1 | API_KEY="07b3bfe728954619b58f0107ad73acc1" |
---|
2 | |
---|
3 | curl -X POST -H "Authorization: $API_KEY" http://127.0.0.1:8888/clients -d @post_clients.json |
---|
4 | curl -X GET -H "Authorization: $API_KEY" http://127.0.0.1:8888/clients |
---|
5 | curl -X POST -H "Authorization: $API_KEY" http://127.0.0.1:8888/wol -d @wol.json |
---|
6 | curl -X POST -H "Authorization: $API_KEY" http://127.0.0.1:8888/shell/run -d @post_shell_run.json |
---|
7 | curl -X POST -H "Authorization: $API_KEY" http://127.0.0.1:8888/shell/output -d @post_shell_output.json |
---|
8 | curl -X POST -H "Authorization: $API_KEY" http://127.0.0.1:8888/session -d @session.json |
---|
9 | curl -X POST -H "Authorization: $API_KEY" http://127.0.0.1:8888/poweroff -d @poweroff.json |
---|
10 | curl -X POST -H "Authorization: $API_KEY" http://127.0.0.1:8888/reboot -d @reboot.json |
---|
11 | curl -X POST -H "Authorization: $API_KEY" http://127.0.0.1:8888/stop -d @stop.json |
---|
12 | curl -X POST -H "Authorization: $API_KEY" http://127.0.0.1:8888/refresh -d @refresh.json |
---|
13 | curl -X POST -H "Authorization: $API_KEY" http://127.0.0.1:8888/hardware -d @post_clients.json |
---|
14 | curl -X POST -H "Authorization: $API_KEY" http://127.0.0.1:8888/software -d @post_clients.json |
---|
15 | curl -X POST -H "Authorization: $API_KEY" http://127.0.0.1:8888/image/create -d @create_image.json |
---|
16 | curl -X POST -H "Authorization: $API_KEY" http://127.0.0.1:8888/image/restore -d @restore_image.json |
---|
Note: See
TracBrowser
for help on using the repository browser.