From 56d35fa3ee2f3510867b06d062524f419775bf36 Mon Sep 17 00:00:00 2001 From: Peter Wood Date: Thu, 26 Mar 2026 14:10:38 +0000 Subject: [PATCH] added crontab entry for karakeep --- crontab/crontab-io.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/crontab/crontab-io.txt b/crontab/crontab-io.txt index 8e5467a..a29c3aa 100644 --- a/crontab/crontab-io.txt +++ b/crontab/crontab-io.txt @@ -11,6 +11,9 @@ # 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 Karakeep backup at 0300 with logging +# Backs up hoarder_data and hoarder_meilisearch volumes to NAS +0 3 * * * { echo "Starting Karakeep backup"; /home/acedanger/shell/backup-karakeep.sh; echo "Karakeep backup completed with exit code: $?"; } 2>&1 | logger -t karakeep-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