From 12e669f2c4b6c3ea2cae64354e590cb358ac6fd4 Mon Sep 17 00:00:00 2001 From: jurgenhaas <juergen@paragon-es.de> Date: Thu, 13 Jun 2019 16:27:51 +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 cf351c7..6216220 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -53,4 +53,4 @@ tags: - always - when: not excluded_roles or "commonconnect" not in excluded_roles and role_commonconnect_completed is not defined + when: (not excluded_roles or "commonconnect" not in excluded_roles) and role_commonconnect_completed is not defined -- GitLab