tweaks to the scripts
All checks were successful
Check scripts syntax / check-scripts-syntax (push) Successful in 41s

This commit is contained in:
2025-08-24 20:55:14 -03:00
parent 45567b2242
commit eb8ca78f4f
3 changed files with 58 additions and 121 deletions

View File

@@ -26,9 +26,9 @@ readonly AVAILABLE_SCRIPTS=("clean.sh" "backup.sh" "docker-updater.sh")
# Format: [script_name]="cron_schedule"
declare -A CRONTAB_SCHEDULES=(
["clean.sh"]="0 23 * * *" # Daily at 11 PM
["backup.sh"]="30 23 * * 1,5" # Monday and Friday at 11:30 PM
["docker-updater.sh"]="0 3 */4 * *" # Every 4 days at 3 AM
["clean.sh"]="0 3 * * *" # Daily at 3 AM
["backup.sh"]="0 23 * * 1,5" # Monday and Friday at 11 PM
["docker-updater.sh"]="0 3 * * 6" # Every Saturday at 3 AM
)
#==============================================================================