search for: _get_guest_name

Displaying 2 results from an estimated 2 matches for "_get_guest_name".

Did you mean: get_guest_name
2010 Mar 31
3
[PATCH] Remove v2v-snapshot
...(open($out, '>', $outputxml)) { - print STDERR user_message(__x("Unable to open {file}: {error}", - file => $outputxml, - error => $!)); - ($out, $outputxml) = tempfile(_get_guest_name($dom).'-XXXXXX', - SUFFIX => '.xml'); - $error = 1; - } - - print $out $dom->toString(); - - close($out) or die(__x("Error closing {file}: {error}", - file => $o...
2009 Oct 01
0
[PATCH] v2v-snapshot: Improve documentation
...h is shutdown. It is not intended +as a long-term storage option.> When a change has been tested, v2v-snapshot can either commit the change, which will update the original storage with the changes made to the snapshot, or @@ -757,6 +759,73 @@ sub _get_xml_path return $xmldir.'/'._get_guest_name($dom).'.xml'; } +=head1 EXAMPLES + +=head2 Snapshot a local guest + +=over + +This example covers snapshotting a guest which is available through libvirt on +the local machine. The guest domain's name is I<E<lt>guestE<gt>>. + +First ensure the guest is shutdown: + +...