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
|
- nextcloud-occ
|
||||||
- config:system:set
|
- config:system:set
|
||||||
- "{{ item.key }}"
|
- "{{ item.key }}"
|
||||||
|
- --type
|
||||||
|
- "{{ item.get('type', 'string') }}"
|
||||||
- --value
|
- --value
|
||||||
- "{{ item.value }}"
|
- "{{ item.value }}"
|
||||||
with_items:
|
with_items:
|
||||||
|
|
@ -94,7 +96,7 @@
|
||||||
- { key: "defaultapp", value: "files" }
|
- { key: "defaultapp", value: "files" }
|
||||||
- { key: "default_phone_region", value: "DE" }
|
- { key: "default_phone_region", value: "DE" }
|
||||||
- { key: "overwrite.cli.url", value: "https://{{ nextcloud.externalurl }}"}
|
- { 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
|
- name: copy nextcloud nginx config
|
||||||
template:
|
template:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue