2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-08-20 02:00:24 +00:00

Debug command output5

This commit is contained in:
Mark Gurevich
2022-07-13 12:00:19 -04:00
parent 344cf05f9c
commit 40e024975d

View File

@@ -1689,9 +1689,14 @@ sub runcmd
if ($?)
{
$rc = $?;
print "MG rc=" $rc;
$rc = $rc >> 8;
$::RUNCMD_RC = $rc;
print "MG RUNCMD_RC=" $::RUNCMD_RC;
}
print Dumper \@$outref;
print Dumper \@outref;
print Dumper \$outref;
chomp(@$outref);
return @$outref;