search for: https_ca_dir

Displaying 5 results from an estimated 5 matches for "https_ca_dir".

2010 Mar 22
1
[PATCH] ESX: Enable verification of SSL certificates
...t;verify_certificate($response) unless ($noverify); $self->create_volume($response); } }); @@ -75,14 +75,14 @@ sub new { $self->{_v2v_username} = $username; $self->{_v2v_password} = $password; - if ($verify) { + if ($noverify) { + # Unset HTTPS_CA_DIR if it is already set + delete($ENV{HTTPS_CA_DIR}); + } else { # Leave HTTPS_CA_DIR alone if it is already set # Setting HTTPS_CA_DIR to the empty string results in it using the # compiled-in default paths $ENV{HTTPS_CA_DIR} = "" unless (exists...
2010 Apr 22
2
[PATCH 1/2] Try to load the loop module before running mkinitrd
mkinitrd needs to mount files using loop. loop might be a module, so try to load it first. --- lib/Sys/VirtV2V/GuestOS/RedHat.pm | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/lib/Sys/VirtV2V/GuestOS/RedHat.pm b/lib/Sys/VirtV2V/GuestOS/RedHat.pm index 0e469f5..08027b6 100644 --- a/lib/Sys/VirtV2V/GuestOS/RedHat.pm +++ b/lib/Sys/VirtV2V/GuestOS/RedHat.pm @@ -1114,6
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
2010 Sep 21
1
[PREVIEW ONLY] Refactor data transfer code
...$password; - $self->{_v2v_noverify} = $noverify; + $self->{noverify} = $noverify; + $self->{agent} = 'virt-v2v/'.$Sys::VirtV2V::VERSION; + $self->{auth} = 'Basic '.encode_base64("$username:$password"); if ($noverify) { # Unset HTTPS_CA_DIR if it is already set @@ -79,213 +65,211 @@ sub new { $ENV{HTTPS_CA_DIR} = "" unless (exists($ENV{HTTPS_CA_DIR})); } - die("Invalid configuration of Net::HTTPS") + die('Invalid configuration of Net::HTTPS') unless(Net::HTTPS->isa('Net...