search for: 264fe21

Displaying 2 results from an estimated 2 matches for "264fe21".

Did you mean: 264ae1
2011 Mar 22
1
[PATCH v2v] Check that guest names don't contain illegal characters.
...;rjones at redhat.com> Date: Tue, 22 Mar 2011 15:28:29 +0000 Subject: [PATCH 2/3] Check that guest names don't contain illegal characters. --- v2v/virt-v2v.pl | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/v2v/virt-v2v.pl b/v2v/virt-v2v.pl index a499924..264fe21 100755 --- a/v2v/virt-v2v.pl +++ b/v2v/virt-v2v.pl @@ -434,6 +434,16 @@ else { # Decide the name of the guest target. $output_name = $source->get_name() unless defined $output_name; +# The regexp matches any unicode alphanumeric, underscore, and a range +# of safe ASCII characters. Note tha...
2011 Mar 22
1
[PATCH v2v] Add --root (root choice) option.
...You can get the old behaviour by specifying --root=single. There are various other behaviours available too. --- v2v/virt-v2v.pl | 106 +++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 files changed, 100 insertions(+), 6 deletions(-) diff --git a/v2v/virt-v2v.pl b/v2v/virt-v2v.pl index 264fe21..4309d9e 100755 --- a/v2v/virt-v2v.pl +++ b/v2v/virt-v2v.pl @@ -244,6 +244,45 @@ I<profile> in the configuration file. =cut +my $root_choice = "ask"; + +=item B<--root=ask> + +=item B<--root=single> + +=item B<--root=first> + +=item B<--root=/dev/sdX> +...