mirror of
https://github.com/Manoj-HV30/cloud-vps.git
synced 2026-07-13 00:50:10 +00:00
17 lines
562 B
Django/Jinja
17 lines
562 B
Django/Jinja
#!/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
|