From 4cd5f93cdfbced2627d3445775965a322599fb9b Mon Sep 17 00:00:00 2001 From: DerLinkman Date: Tue, 28 Mar 2023 11:22:49 +0200 Subject: [PATCH] Fixed broken pipe errors in nextcloud.sh --- helper-scripts/nextcloud.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helper-scripts/nextcloud.sh b/helper-scripts/nextcloud.sh index 03913b64e..71c9a73fd 100755 --- a/helper-scripts/nextcloud.sh +++ b/helper-scripts/nextcloud.sh @@ -122,7 +122,7 @@ elif [[ ${NC_INSTALL} == "y" ]]; then && chmod +x ./data/web/nextcloud/occ echo -e "\033[33mCreating 'nextcloud' database...\033[0m" - NC_DBPASS=$( /dev/null | head -c 28) NC_DBUSER=nextcloud NC_DBNAME=nextcloud @@ -138,7 +138,7 @@ elif [[ ${NC_INSTALL} == "y" ]]; then echo "" echo -e "\033[33mInstalling Nextcloud...\033[0m" - ADMIN_NC_PASS=$( /dev/null | head -c 28) echo -ne "[1/4] Setting correct permissions for www-data" docker exec -it $(docker ps -f name=php-fpm-mailcow -q) /bin/bash -c "chown -R www-data:www-data /web/nextcloud"