From 48b852149af75c6c9488b79f2a2950dae5615921 Mon Sep 17 00:00:00 2001 From: Simon L Date: Sat, 10 Jun 2023 14:49:53 +0200 Subject: [PATCH] Remove not anymore needed workaround Signed-off-by: Simon L --- Containers/nextcloud/entrypoint.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/Containers/nextcloud/entrypoint.sh b/Containers/nextcloud/entrypoint.sh index 96a41fac..8d9864f9 100644 --- a/Containers/nextcloud/entrypoint.sh +++ b/Containers/nextcloud/entrypoint.sh @@ -421,8 +421,6 @@ DATADIR_PERMISSION_CONF # Performing update of all apps if daily backups are enabled, running and successful and if it is saturday if [ "$UPDATE_NEXTCLOUD_APPS" = 'yes' ] && [ "$(date +%u)" = 6 ]; then UPDATED_APPS="$(php /var/www/html/occ app:update --all)" - # Update all apps again and try to prevent something like https://github.com/nextcloud/polls/issues/2793 from happening - php /var/www/html/occ app:update --all run_upgrade_if_needed_due_to_app_update if [ -n "$UPDATED_APPS" ]; then bash /notify.sh "Your apps just got updated!" "$UPDATED_APPS"