From a8b612109ea59963d8ed32d7b5937048cba0924f Mon Sep 17 00:00:00 2001 From: Deckard Date: Sun, 12 Oct 2025 02:57:50 -0400 Subject: [PATCH] Fix backup container restart issue --- scripts/backup-scheduler.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/backup-scheduler.sh b/scripts/backup-scheduler.sh index 11a8711..5d4fc09 100644 --- a/scripts/backup-scheduler.sh +++ b/scripts/backup-scheduler.sh @@ -4,7 +4,8 @@ set -e echo "🔧 Starting enhanced backup service with hourly and daily schedules..." # Install curl if not available (handle different package managers) -microdnf install -y curl || yum install -y curl || apt-get update && apt-get install -y curl +# NOTE: curl is already available in mysql:8.0 base image, commenting out to fix operator precedence issue +# microdnf install -y curl || yum install -y curl || apt-get update && apt-get install -y curl # Download backup scripts from GitHub echo "📥 Downloading backup scripts from GitHub..."