mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-12-08 02:16:04 +00:00
Solved 2.18 -> 2.20 condition update bug - https://chatgpt.com/share/69315bda-0b6c-800f-b093-e665c0bba255
This commit is contained in:
@@ -78,7 +78,7 @@
|
|||||||
loop: "{{ LISTMONK_SETTINGS }}"
|
loop: "{{ LISTMONK_SETTINGS }}"
|
||||||
loop_control:
|
loop_control:
|
||||||
label: "{{ item.key }}"
|
label: "{{ item.key }}"
|
||||||
when: item.when is not defined or item.when
|
when: (item.when | default(true)) | bool
|
||||||
no_log: "{{ MASK_CREDENTIALS_IN_LOGS | bool }}"
|
no_log: "{{ MASK_CREDENTIALS_IN_LOGS | bool }}"
|
||||||
async: "{{ ASYNC_TIME if ASYNC_ENABLED | bool else omit }}"
|
async: "{{ ASYNC_TIME if ASYNC_ENABLED | bool else omit }}"
|
||||||
poll: "{{ ASYNC_POLL if ASYNC_ENABLED | bool else omit }}"
|
poll: "{{ ASYNC_POLL if ASYNC_ENABLED | bool else omit }}"
|
||||||
|
|||||||
Reference in New Issue
Block a user