Fix dcc25f1 (feat: disable profiles)

The value "false" was set as a string, which PHP/Nextcloud interprets as true
instead of false.
This commit is contained in:
Julian 2022-06-08 00:15:17 +02:00
parent dcc25f1a27
commit 911f304a8e
No known key found for this signature in database
GPG key ID: 2F811E2338EE029B

View file

@ -78,6 +78,8 @@
- nextcloud-occ
- config:system:set
- "{{ item.key }}"
- --type
- "{{ item.get('type', 'string') }}"
- --value
- "{{ item.value }}"
with_items:
@ -94,7 +96,7 @@
- { key: "defaultapp", value: "files" }
- { key: "default_phone_region", value: "DE" }
- { key: "overwrite.cli.url", value: "https://{{ nextcloud.externalurl }}"}
- { key: "profile.enabled", value: "false"}
- { key: "profile.enabled", value: "false", type: "boolean"}
- name: copy nextcloud nginx config
template: