From 04e5c5e592e3355cf38c7d0f4aee2c76b469e61a Mon Sep 17 00:00:00 2001 From: Simon L Date: Wed, 8 Nov 2023 17:02:15 +0100 Subject: [PATCH] make sure that notify-push is executable Signed-off-by: Simon L --- Containers/notify-push/start.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Containers/notify-push/start.sh b/Containers/notify-push/start.sh index d730c7fd..dcc5100b 100644 --- a/Containers/notify-push/start.sh +++ b/Containers/notify-push/start.sh @@ -46,6 +46,10 @@ fi export DATABASE_URL="postgres://$POSTGRES_USER:$POSTGRES_PASSWORD@$POSTGRES_HOST/$POSTGRES_DB" export REDIS_URL="redis://:$REDIS_HOST_PASSWORD@$REDIS_HOST" +# Make the binary executable if possible +ls -l /nextcloud/custom_apps/notify_push/bin/"$CPU_ARCH"/notify_push +chmod +x /nextcloud/custom_apps/notify_push/bin/"$CPU_ARCH"/notify_push + # Run it /nextcloud/custom_apps/notify_push/bin/"$CPU_ARCH"/notify_push \ --database-prefix="oc_" \