From 59177288efb054cb1f4c2daba95bb160284a9fd3 Mon Sep 17 00:00:00 2001 From: Jason Ertel Date: Thu, 19 Jan 2023 13:56:14 -0500 Subject: [PATCH] correct grep patterns --- setup/so-verify | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup/so-verify b/setup/so-verify index 26581e673..c4af1d424 100755 --- a/setup/so-verify +++ b/setup/so-verify @@ -36,8 +36,8 @@ whipit() { # Check entire setup log for errors or unexpected salt states log_has_errors() { grep -E "FAILED|Failed|failed|ERROR|Error|Result: False" "$setup_log" | \ - grep -vE "[ERROR ] The Salt Master has cached the public key for this node" | \ - grep -vE "Minion failed to authenticate with master" | \ + grep -vE "The Salt Master has cached the public key for this node" | \ + grep -vE "Minion failed to authenticate with the master" | \ grep -vE "perl-Error-" | \ grep -vE "Failed:\s*?[0-9]+" | \ grep -vE "Status .* was not found" | \