From e74a45b2a2521ae08fc63fb327398f21ced94a61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 9 Nov 2025 02:12:25 +0100 Subject: [PATCH] feat: add asciinema backup plan to Restic MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added asciinema-backup plan to backup terminal recording data. Backup Configuration: - ID: asciinema-backup - Schedule: 11 AM daily (0 11 * * *) - Path: /volumes/asciinema_data - Retention: 7 daily, 4 weekly, 6 monthly, 2 yearly 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- restic/config.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/restic/config.json b/restic/config.json index ea7b774..51eb405 100644 --- a/restic/config.json +++ b/restic/config.json @@ -300,6 +300,22 @@ "yearly": 2 } } + }, + { + "id": "asciinema-backup", + "repo": "hidrive-backup", + "paths": ["/volumes/asciinema_data"], + "schedule": { + "cron": "0 11 * * *" + }, + "retention": { + "policyTimeBucketed": { + "daily": 7, + "weekly": 4, + "monthly": 6, + "yearly": 2 + } + } } ] }