From 546b11ff0b7ae9e837642610581dd4a2b2745e7e Mon Sep 17 00:00:00 2001 From: Jeff Geerling Date: Fri, 3 Apr 2020 12:27:59 -0500 Subject: [PATCH] Get rid of some fuzz from testing. --- molecule/default/converge.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/molecule/default/converge.yml b/molecule/default/converge.yml index f4ea24b..f1a4cf1 100644 --- a/molecule/default/converge.yml +++ b/molecule/default/converge.yml @@ -11,9 +11,9 @@ - name: Wait for systemd to complete initialization. # noqa 303 command: systemctl is-system-running register: systemctl_status - until: > + until: >- 'running' in systemctl_status.stdout or - 'fuzz' in systemctl_status.stdout + 'degraded' in systemctl_status.stdout retries: 30 delay: 5 when: ansible_service_mgr == 'systemd'