From 22468165b60a5794b6f4e8fcc61824efc9db0c07 Mon Sep 17 00:00:00 2001 From: lissav Date: Sun, 23 Jun 2013 10:50:24 +0000 Subject: [PATCH] add req->{status} to runxcmd for defect 3641 git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/branches/2.8@16725 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT/xCAT/Utils.pm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/perl-xCAT/xCAT/Utils.pm b/perl-xCAT/xCAT/Utils.pm index b89750dbf..ebf11a5e6 100644 --- a/perl-xCAT/xCAT/Utils.pm +++ b/perl-xCAT/xCAT/Utils.pm @@ -1307,6 +1307,10 @@ sub runxcmd_output { push @$::xcmd_outref, @{$resp->{data}}; } + if (defined($resp->{status})) + { + push @$::xcmd_outref, @{$resp->{status}}; + } if (defined($resp->{node})) { my $node = $resp->{node}->[0]; @@ -1378,6 +1382,10 @@ sub runxcmd_output2 { push @{$::xcmd_outref_hash->{data}}, @{$resp->{data}}; } + if (defined($resp->{status})) + { + push @{$::xcmd_outref_hash->{status}}, @{$resp->{status}}; + } if (defined($resp->{node})) { push @{$::xcmd_outref_hash->{node}}, @{$resp->{node}};