From c8d89971198b7afec72d60a56febc855781b1880 Mon Sep 17 00:00:00 2001 From: Jason Ertel Date: Thu, 2 Nov 2023 09:21:57 -0400 Subject: [PATCH] adjust log filter to include all hosts --- setup/so-verify | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup/so-verify b/setup/so-verify index e9a8a375c..98bda96be 100755 --- a/setup/so-verify +++ b/setup/so-verify @@ -25,7 +25,8 @@ log_has_errors() { # Ignore salt mast cached public key and minion failed to auth because this is a test # to see if the salt key had already been accepted. - # Ignore failed to connect to ::1 since we have most curls wrapped in a retry. + # Ignore failed to connect to since we have most curls wrapped in a retry and there are + # multiple mirrors available. # Ignore perl-Error- since that is the name of a Perl package SO installs. @@ -39,7 +40,7 @@ log_has_errors() { grep -E "FAILED|Failed|failed|ERROR|Result: False|Error is not recoverable" "$setup_log" | \ grep -vE "The Salt Master has cached the public key for this node" | \ grep -vE "Minion failed to authenticate with the master" | \ - grep -vE "Failed to connect to ::1" | \ + grep -vE "Failed to connect to " | \ grep -vE "Failed to set locale" | \ grep -vE "perl-Error-" | \ grep -vE "Failed:\s*?[0-9]+" | \