[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH OSSTEST v2] libvirt: Pass correct arguments to virsh migrate
$dst is a host hash/object, resulting in: 2015-08-04 22:35:25 Z executing ssh ... root@xxxxxxxxxxxxx virsh migrate debian.guest.osstest HASH(0x28f4310) bash: -c: line 0: syntax error near unexpected token `(' bash: -c: line 0: `virsh migrate debian.guest.osstest HASH(0x28f4310)' Switch to using the same pattern as xl.pm, which is to call the argument (containing the host hash) $dho and for $dst to be a local variable containing $dho->{Name}. Also s/$ho/$sho/ to match xl.pm, since I think that is clearer about what role everything has. Fix the prototype too while editing this function. Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx> --- v2: Fix the prototype as well. --- Osstest/Toolstack/libvirt.pm | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Osstest/Toolstack/libvirt.pm b/Osstest/Toolstack/libvirt.pm index 32dca84..bfb5ccb 100644 --- a/Osstest/Toolstack/libvirt.pm +++ b/Osstest/Toolstack/libvirt.pm @@ -103,11 +103,12 @@ sub saverestore_check ($) { return check_for_command($self, "save"); } -sub migrate ($) { - my ($self,$gho,$dst,$timeout) = @_; - my $ho = $self->{Host}; +sub migrate ($$$$) { + my ($self,$gho,$dho,$timeout) = @_; + my $sho = $self->{Host}; + my $dst = $dho->{Name}; my $gn = $gho->{Name}; - target_cmd_root($ho, "virsh migrate $gn $dst", $timeout); + target_cmd_root($sho, "virsh migrate $gn $dst", $timeout); } sub save ($$$$) { -- 2.1.4 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |