add updated container scripts

This commit is contained in:
Deckard
2025-10-07 13:51:55 -04:00
parent 238ee39234
commit 291e1e8393
3 changed files with 83 additions and 53 deletions

View File

@@ -3,8 +3,8 @@ set -e
echo "🔧 Starting enhanced backup service with hourly and daily schedules..."
# Install curl if not available
apt-get update && apt-get install -y curl
# 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
# Download backup scripts from GitHub
echo "📥 Downloading backup scripts from GitHub..."