diff --git a/crontab/crontab-io.txt b/crontab/crontab-io.txt index d18645f..d22b157 100644 --- a/crontab/crontab-io.txt +++ b/crontab/crontab-io.txt @@ -1,5 +1,5 @@ # Enhanced Crontab Entries for IO (Download/Acquisition Server) -# +# # This system runs download management services (Radarr, Sonarr, SABnzbd, etc.) # and should focus on Docker container management rather than media server tasks @@ -7,6 +7,11 @@ # Backs up Docker container configurations and data 0 2 * * * { echo "Starting Docker backup"; /home/acedanger/shell/backup-docker.sh; echo "Docker backup completed with exit code: $?"; } 2>&1 | logger -t docker-backup -p user.info +# Daily Docker backup at 0230 with enhanced logging +# Backs up Docker container configurations and data +30 2 * * * { echo "Starting Docker backup"; /home/acedanger/shell/backup-media.sh; echo "Docker media backup completed with exit code: $?"; } 2>&1 | logger -t docker-media-backup -p user.info + + # Daily system backup at 0400 with auto-cleanup 0 4 * * * /home/acedanger/shell/crontab/crontab-backup-system.sh backup auto --auto-cleanup 2>&1 | logger -t crontab-backup -p user.info