From b92c6aa17d1f45876051bf505ff04775c9837608 Mon Sep 17 00:00:00 2001 From: jurgenhaas <juergen@paragon-es.de> Date: Thu, 13 Jun 2019 16:28:15 +0200 Subject: [PATCH] ansible-playbooks/general#85 Fix some complex when statements --- tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/main.yml b/tasks/main.yml index 47bdfe6..cd4ae8c 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -22,4 +22,4 @@ tags: - always - when: not excluded_roles or "apache" not in excluded_roles and role_apache_completed is not defined + when: (not excluded_roles or "apache" not in excluded_roles) and role_apache_completed is not defined -- GitLab