search for: xmldir

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

Did you mean: mkdir
2010 Mar 31
3
[PATCH] Remove v2v-snapshot
...urn -1; - } -} - -sub _get_guest_name -{ - my ($dom) = @_; - - # Get the name of the guest from the domain description - my ($name_elem) = $dom->findnodes('/domain/name/text()'); - return $name_elem->toString(); -} - -sub _get_xml_path -{ - my ($dom) = @_; - - my $xmldir = $datadir.'/xml'; - - # Ensure it exists - unless (-d $xmldir) { - unless (mkdir($xmldir)) { - print STDERR user_message(__x("Unable to create xml storage ". - "directory {dir}: {error}", -...
2009 Oct 01
0
[PATCH] v2v-snapshot: Improve documentation
...apshot a guest which 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 ensur...