From 12483dc1b711daf89b21f4bd843f0f3e76da5cf4 Mon Sep 17 00:00:00 2001 From: jurgenhaas <juergen@paragon-es.de> Date: Thu, 13 Jun 2019 16:28:22 +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 e3d293d..a610dc8 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -37,4 +37,4 @@ tags: - always - when: not excluded_roles or "php" not in excluded_roles and role_php_completed is not defined + when: (not excluded_roles or "php" not in excluded_roles) and role_php_completed is not defined -- GitLab