Displaying 1 result from an estimated 1 matches for "qcow2_path".
2009 Jul 24
2
[PATCH] Initial drop of virt-v2v
...defined($path)) {
+ print STDERR "qcow2: invalid source: ".$source->toString()."\n";
+ next;
+ }
+
+ # XXX: Do something intelligent if it's already a qcow2 image
+
+ # Create a qcow2 image for the underlying storage
+ my $qcow2_path = $self->create_qcow2($path);
+
+ # Update the source to be a "file" with the new path
+ $source->setAttribute("file", $qcow2_path);
+
+ # Remove the driver element which is a sibling of source because it
+ # might specify a physical device
+...