From 940fd25532e88d58758aae7ab18391698fb855ef Mon Sep 17 00:00:00 2001 From: jurgenhaas <juergen@paragon-es.de> Date: Thu, 13 Jun 2019 16:27:52 +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 8ad338f..b6593de 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -11,4 +11,4 @@ - debug: msg='We have to implement some Drupal site specific configuration here' - when: not excluded_roles or "drupalconsole" not in excluded_roles and php_version_main|default("7") != "7" + when: (not excluded_roles or "drupalconsole" not in excluded_roles) and php_version_main|default("7") != "7" -- GitLab