From 957da88d3db9b090c9c338db2d6b4148d0a9ba24 Mon Sep 17 00:00:00 2001 From: nd Date: Sun, 14 Sep 2025 18:00:57 +0200 Subject: [PATCH] fix boolean in conditionals - migrate to ansible-core 2.19 --- tasks/main.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index 1ab2ec8..e81f047 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -3,9 +3,7 @@ - name: configure ldap app nextcloud_ldap: config: "{{ nextcloud.ldap }}" - when: - - nextcloud.ldap.config + when: nextcloud.ldap.config is truthy - include_tasks: groupfolders.yml - when: - - nextcloud.groupfolders + when: nextcloud.groupfolders is truthy