diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2016-06-23 14:08:19 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2017-01-16 09:19:45 +0100 |
commit | 3282eca4aee00d17727b6ff520287afe559aa823 (patch) | |
tree | 3e79b50eb55463104e8b2edaed3b6a39024acdd6 /docs | |
parent | b4039d8d23a6729c0206b3b3b14a9cd0bd618b69 (diff) |
qmp-commands: move 'blockdev-snapshot' doc to schema
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/qmp-commands.txt | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/docs/qmp-commands.txt b/docs/qmp-commands.txt index c857d39c46..41b070d92f 100644 --- a/docs/qmp-commands.txt +++ b/docs/qmp-commands.txt @@ -402,35 +402,6 @@ Example: "name": "bitmap0" } } <- { "return": {} } -blockdev-snapshot ------------------ -Since 2.5 - -Create a snapshot, by installing 'node' as the backing image of -'overlay'. Additionally, if 'node' is associated with a block -device, the block device changes to using 'overlay' as its new active -image. - -Arguments: - -- "node": device that will have a snapshot created (json-string) -- "overlay": device that will have 'node' as its backing image (json-string) - -Example: - --> { "execute": "blockdev-add", - "arguments": { "driver": "qcow2", - "node-name": "node1534", - "file": { "driver": "file", - "filename": "hd1.qcow2" }, - "backing": "" } } - -<- { "return": {} } - --> { "execute": "blockdev-snapshot", "arguments": { "node": "ide-hd0", - "overlay": "node1534" } } -<- { "return": {} } - blockdev-snapshot-internal-sync ------------------------------- |