From 08bc386744ab7fdbf46332551f9b674bd86f6223 Mon Sep 17 00:00:00 2001 From: Christoph Date: Mon, 11 Feb 2019 15:56:40 +0100 Subject: [PATCH] Set default quota to 5 GB. --- install_nextcloud.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install_nextcloud.sh b/install_nextcloud.sh index b4b33da..19f79a2 100755 --- a/install_nextcloud.sh +++ b/install_nextcloud.sh @@ -2449,10 +2449,10 @@ echononl "Set a default quota of 5 GB" cat <> $log_file sudo -u "$HTTP_USER" "$php_binary" "${INSTALL_DIR}/occ" config:app:set files \\ - default_quota --value="1 GB" + default_quota --value="5 GB" EOF sudo -u "$HTTP_USER" "$php_binary" "${INSTALL_DIR}/occ" config:app:set files \ - default_quota --value="1 GB" >> $log_file 2>&1 + default_quota --value="5 GB" >> $log_file 2>&1 if [[ $? -eq 0 ]]; then echo_ok