diff options
author | Jiri Denemark <jdenemar@redhat.com> | 2012-02-28 13:42:42 +0100 |
---|---|---|
committer | Jiri Denemark <jdenemar@redhat.com> | 2012-02-29 12:27:12 +0100 |
commit | 04dec5826dc538d771fc29e4b8a2220d46050a44 (patch) | |
tree | 90c2cc92e08ce7fc7bd4c0c5fc928fead0bc6e0d /docs/hooks.html.in | |
parent | hooks: Add support for capturing hook output (diff) | |
download | libvirt-04dec5826dc538d771fc29e4b8a2220d46050a44.tar.gz libvirt-04dec5826dc538d771fc29e4b8a2220d46050a44.tar.bz2 libvirt-04dec5826dc538d771fc29e4b8a2220d46050a44.zip |
qemu: Add pre-migration hook
This hook is called during the Prepare phase on destination host and may
be used for changing domain XML.
Diffstat (limited to 'docs/hooks.html.in')
-rw-r--r-- | docs/hooks.html.in | 35 |
1 files changed, 23 insertions, 12 deletions
diff --git a/docs/hooks.html.in b/docs/hooks.html.in index 890359e64..ab16db217 100644 --- a/docs/hooks.html.in +++ b/docs/hooks.html.in @@ -120,6 +120,16 @@ called again, <span class="since">since 0.9.0</span>, to allow any additional resource cleanup:<br/> <pre>/etc/libvirt/hooks/qemu guest_name release end -</pre></li> + <li><span class="since">Since 0.9.11</span>, the qemu hook script + is also called at the beginning of incoming migration. It is called + as: <pre>/etc/libvirt/hooks/qemu guest_name migrate begin -</pre> + with domain XML sent to standard input of the script. In this case, + the script acts as a filter and is supposed to modify the domain + XML and print it out on its standard output. Empty output is + identical to copying the input XML without changing it. In case the + script returns failure or the output XML is not valid, incoming + migration will be canceled. This hook may be used, e.g., to change + location of disk images for incoming domains.</li> </ul> <h5><a name="lxc">/etc/libvirt/hooks/lxc</a></h5> @@ -161,19 +171,20 @@ source and destination hosts:</p> <ol> <li>At the beginning of the migration, the <i>qemu</i> hook script on - the <b>destination</b> host is executed with the "start" - operation.<br/><br/></li> - <li>If this hook script returns indicating success (error code 0), the - migration continues. Any other return code indicates failure, and - the migration is aborted.<br/><br/></li> - <li>The QEMU guest is then migrated to the destination host.<br/> - <br/></li> + the <b>destination</b> host is executed with the "migrate" + operation.</li> + <li>Before QEMU process is spawned, the two operations ("prepare" and + "start") called for domain start are executed on + <b>destination</b> host.</li> + <li>If both of these hook script executions exit successfully (exit + status 0), the migration continues. Any other exit code indicates + failure, and the migration is aborted.</li> + <li>The QEMU guest is then migrated to the destination host.</li> <li>Unless an error occurs during the migration process, the <i>qemu</i> - hook script on the <b>source</b> host is then executed with the "stopped" - operation, to indicate it is no longer running on this - host.<br/><br/> - Regardless of the return code from this hook script, the migration - is not aborted as it has already been performed.</li> + hook script on the <b>source</b> host is then executed with the + "stopped" and "release" operations to indicate it is no longer + running on this host. Regardless of the return codes, the + migration is not aborted as it has already been performed.</li> </ol> <br/> |