first vps

This commit is contained in:
2026-05-17 05:51:18 +05:30
commit ed696f3ad7
15 changed files with 548 additions and 0 deletions
@@ -0,0 +1,16 @@
#!/usr/bin/env bash
# Managed by Ansible — do not edit manually
export B2_ACCOUNT_ID="{{ b2_account_id | default('YOUR_KEY_ID') }}"
export B2_ACCOUNT_KEY="{{ b2_account_key | default('YOUR_APPLICATION_KEY') }}"
export RESTIC_PASSWORD="{{ restic_password | default('YOUR_BACKUP_PASSWORD') }}"
REPO="b2:{{ b2_bucket | default('your-bucket') }}:/backup"
restic -r "$REPO" backup \
--exclude /home/papyrus/apps/navidrome/music \
/var/lib/docker/volumes \
/srv/secrets \
/home/papyrus/apps
restic -r "$REPO" forget --keep-last 7 --keep-weekly 4 --prune