search for: is_configured

Displaying 4 results from an estimated 4 matches for "is_configured".

2010 Jan 29
4
[FOR REVIEW ONLY] ESX work in progress
The following patches are where I'm currently at with ESX support. I can now import a domain from ESX along with its storage. Note that I'm not yet doing any conversion. In fact, I've never even tested past the import stage (I just had an exit in there). The meat is really in the 4th patch. The rename of MetadataReader->Connection was because the Connection is now really providing
2010 Feb 01
9
[ESX support] Working ESX conversion for RHEL 5
With this patchset I have successfully[1] imported a RHEL 5 guest directly from ESX with the following command line: virt-v2v -ic 'esx://yellow.marston/?no_verify=1' -op transfer RHEL5-64 Login details are stored in ~/.netrc Note that this is the only guest I've tested against. I haven't for example, checked that I haven't broken Xen imports. Matt [1] With the exception of
2009 Jul 24
2
[PATCH] Initial drop of virt-v2v
...RFACE + +=item new() + +Instantiate an instance of the backend + +=item get_name() + +Return the module's name. + +=item get_options() + +Return a list of command line options in the correct format for GetOptions. This +list will be added to those of other modules and the main program. + +=item is_configured() + +Return 1 if the module has been suffiently configured to proceed. +Return 0 and display an error message otherwise. + +=item handle_arguments(@arguments) + +A backend may take any number of arguments describing where its data is located. + +=item get_dom + +Returns an XML::DOM::Document descri...
2010 Mar 31
3
[PATCH] Remove v2v-snapshot
...ate Connection -my $mdr = Sys::VirtV2V::Connection->instantiate($input, {}, $vmm, @ARGV); -if(!defined($mdr)) { - print STDERR user_message(__x("{input} is not a valid input format", - input => $input)); - exit(1); -} - -exit(1) unless($mdr->is_configured()); - -############################################################################### -## Start of processing - -# Get a libvirt configuration for the guest -my $dom = $mdr->get_dom(); -exit(1) unless(defined($dom)); - -my $pool = _get_pool($vmm); - -if($commit) { - _commit_guest($dom, $vmm,...