From 911f304a8ea42fb8ac1b00658c392e8235cd69ad Mon Sep 17 00:00:00 2001 From: Julian Date: Wed, 8 Jun 2022 00:15:17 +0200 Subject: [PATCH] Fix dcc25f1 (feat: disable profiles) The value "false" was set as a string, which PHP/Nextcloud interprets as true instead of false. --- tasks/base.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tasks/base.yml b/tasks/base.yml index 1602115..b2813fa 100644 --- a/tasks/base.yml +++ b/tasks/base.yml @@ -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: