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:
parent
dcc25f1a27
commit
911f304a8e
1 changed files with 3 additions and 1 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue