remove jinja2 delimiters from condition
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Robert Kaussow 2020-05-22 22:52:10 +02:00
parent e30f87f296
commit 8b68438b81
1 changed files with 1 additions and 1 deletions

View File

@ -14,6 +14,6 @@
loop: "{{ certbot_domain_groups }}"
loop_control:
label: "{{ item.name }}"
when: "{{ item.init | default(False) | bool }}"
when: item.init | default(False) | bool
become: True
become_user: "{{ certbot_user }}"