diff options
author | Richard Jones <rjones@redhat.com> | 2010-02-12 12:08:58 +0000 |
---|---|---|
committer | Richard Jones <rjones@redhat.com> | 2010-02-12 12:08:58 +0000 |
commit | 33b4b759afe58c959bdc8b904d618aa1d699a240 (patch) | |
tree | 3b4d94acdb22331553a240f0c7a5665c3b55d337 /perl | |
parent | 946dc06bb861a38cae959416362e4561c9e4829a (diff) | |
download | libguestfs-33b4b759afe58c959bdc8b904d618aa1d699a240.tar.gz libguestfs-33b4b759afe58c959bdc8b904d618aa1d699a240.tar.xz libguestfs-33b4b759afe58c959bdc8b904d618aa1d699a240.zip |
Sys::Guestfs::Lib::open_guest: Remove freeform parameters.
Remove the ability to pass freeform parameters to Sys::Virt->new.
We don't use it, it makes the code more complex to modify, and
indeed there are no other args that Sys::Virt->new supports so
this would never be used.
Also change $readwrite to $rw to match parameter name.
Diffstat (limited to 'perl')
-rw-r--r-- | perl/lib/Sys/Guestfs/Lib.pm | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/perl/lib/Sys/Guestfs/Lib.pm b/perl/lib/Sys/Guestfs/Lib.pm index 21c9a64c..c9a3237c 100644 --- a/perl/lib/Sys/Guestfs/Lib.pm +++ b/perl/lib/Sys/Guestfs/Lib.pm @@ -104,8 +104,7 @@ The handle is still in the config state when it is returned, so you have to call C<$g-E<gt>launch ()>. The optional C<address> parameter can be added to specify the libvirt -URI. In addition, L<Sys::Virt(3)> lists other parameters which are -passed through to C<Sys::Virt-E<gt>new> unchanged. +URI. The implicit libvirt handle is closed after this function, I<unless> you call the function in C<wantarray> context, in which case the @@ -126,7 +125,8 @@ sub open_guest my $first = shift; my %params = @_; - my $readwrite = $params{rw}; + my $rw = $params{rw}; + my $address = $params{address}; my @images = (); if (ref ($first) eq "ARRAY") { @@ -154,12 +154,15 @@ sub open_guest die __"open_guest: too many domains listed on command line" if @images > 1; - $conn = Sys::Virt->new (readonly => 1, @_); + my @libvirt_args = (); + push @libvirt_args, address => $address if defined $address; + + $conn = Sys::Virt->new (readonly => 1, @libvirt_args); die __"open_guest: cannot connect to libvirt" unless $conn; my @doms = $conn->list_defined_domains (); my $isitinactive = 1; - unless ($readwrite) { + unless ($rw) { # In the case where we want read-only access to a domain, # allow the user to specify an active domain too. push @doms, $conn->list_domains (); @@ -199,7 +202,7 @@ sub open_guest # We've now got the list of @images, so feed them to libguestfs. my $g = Sys::Guestfs->new (); foreach (@images) { - if ($readwrite) { + if ($rw) { $g->add_drive ($_); } else { $g->add_drive_ro ($_); |