2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2026-07-31 18:19:40 +00:00

Merge pull request #7649 from VersatusHPC/harvest/pasu-onecli-output-filter

fix(pasu): filter more OneCLI status banner lines from command output
This commit is contained in:
Daniel Hilst
2026-07-27 11:04:44 -03:00
committed by GitHub
+7 -1
View File
@@ -219,7 +219,13 @@ sub processoutput { #This way, one arbiter handles output, no interrupting
$line !~ /Connected to BMC by IP address/i &&
$line !~ /Succeeded running the command /i &&
$line !~ /Based on module version /i &&
$line !~ /Succeed running command /i)) {
$line !~ /Succeed running command /i &&
$line !~ /Connected to BMC at IP address/i &&
$line !~ /Succeed in running the command:/i &&
$line !~ /start to convert cmd./i &&
$line !~ /Start to connect /i &&
$line !~ /Connected to the node/i &&
$line !~ /^Succeed\.\s*$/i)) {
print $nodehdl{$readyh} . ": " . $line . "\n";
}
}