correct issue with boolean in Nextcloud option

This commit is contained in:
vincent 2020-09-21 18:09:48 +02:00
parent c68bfec0c7
commit 58d3986201

View File

@ -88,7 +88,7 @@
lineinfile:
path: '{{ nextcloud_web_root }}/config/config.php'
regexp: '^\s*''{{ item.option }}'''
line: ' ''{{ item.option }}'' => ''{{ item.value }}'','
line: ' ''{{ item.option }}'' => {{ item.value }},'
insertafter: '\$CONFIG'
with_items: '{{ nextcloud_config_options }}'
when: nextcloud_config_options is defined