From 4e45b7e85d23155252dbc0787653bc9e448c6387 Mon Sep 17 00:00:00 2001 From: Michael McCulloch Date: Mon, 5 Feb 2024 08:13:28 -0700 Subject: [PATCH] look for error in correct place --- tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/main.yml b/tasks/main.yml index 71a93ce..40f209d 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -110,7 +110,7 @@ register: taint_removed until: > ("untainted" in taint_removed.stdout) or - ("not found" in taint_removed.stdout) + ("not found" in taint_removed.stderr) changed_when: "'untainted' in taint_removed.stdout" failed_when: false retries: 100