From 4e4631ba802c1ac74f97bc811e8ef698466329a4 Mon Sep 17 00:00:00 2001 From: "Simon L." Date: Mon, 9 Dec 2024 12:10:32 +0100 Subject: [PATCH] add comment for appstore connection check Signed-off-by: Simon L. --- Containers/nextcloud/entrypoint.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Containers/nextcloud/entrypoint.sh b/Containers/nextcloud/entrypoint.sh index e197ff5a89a..65a8ace30ea 100644 --- a/Containers/nextcloud/entrypoint.sh +++ b/Containers/nextcloud/entrypoint.sh @@ -155,6 +155,7 @@ if ! [ -f "$NEXTCLOUD_DATA_DIR/skip.update" ]; then fi if [ "$installed_version" != "0.0.0.0" ]; then +# Check connection to appstore start # Do not remove or change this line! while true; do echo -e "Checking connection to appstore" CURL_STATUS="$(curl -LI "https://apps.nextcloud.com/" -o /dev/null -w '%{http_code}\n' -s)" @@ -167,6 +168,7 @@ if ! [ -f "$NEXTCLOUD_DATA_DIR/skip.update" ]; then sleep 5 fi done +# Check connection to appstore end # Do not remove or change this line! run_upgrade_if_needed_due_to_app_update