From 016e2b524cc3b0a7aea931d3db1c87dd70d3c577 Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Fri, 11 Dec 2015 08:50:35 +0200 Subject: [PATCH] Correct when statement. --- tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/main.yml b/tasks/main.yml index 194bd53..68e3982 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -21,7 +21,7 @@ when: tls_cert|default(True) and not common_role_finished is defined - include: add_tls_cert.yml - when: and not common_role_finished is defined + when: not common_role_finished is defined - include: ssh_ca.yml when: ssh_ca|default(True) and not common_role_finished is defined -- GitLab