From a25a1478283925984ba23cebf884fc52a39f8722 Mon Sep 17 00:00:00 2001 From: max-nextcloud Date: Wed, 23 Mar 2022 20:59:24 +0100 Subject: [PATCH] remove invalid type=boolean in config:app:set App settings do not allow the type option. `config:system:set` on the other hand expects `true` not `yes` as the value of a boolean. --- admin_manual/configuration_server/occ_command.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin_manual/configuration_server/occ_command.rst b/admin_manual/configuration_server/occ_command.rst index 5fb1469cc..85477d19b 100644 --- a/admin_manual/configuration_server/occ_command.rst +++ b/admin_manual/configuration_server/occ_command.rst @@ -330,7 +330,7 @@ These commands set the value of a single app or system configuration:: System config value logtimezone set to Europe/Berlin sudo -u www-data php occ config:app:set files_sharing - incoming_server2server_share_enabled --value="yes" --type=boolean + incoming_server2server_share_enabled --value="yes" Config value incoming_server2server_share_enabled for app files_sharing set to yes The ``config:system:set`` command creates the value, if it does not already