From b49bc19b186b9be7b30f14988d416d067a79cc35 Mon Sep 17 00:00:00 2001 From: Pim Kunis Date: Mon, 15 May 2023 22:18:29 +0200 Subject: [PATCH] change borg repo location --- ansible/roles/borg/templates/backup.yml.j2 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ansible/roles/borg/templates/backup.yml.j2 b/ansible/roles/borg/templates/backup.yml.j2 index 354a2ac..862d84e 100644 --- a/ansible/roles/borg/templates/backup.yml.j2 +++ b/ansible/roles/borg/templates/backup.yml.j2 @@ -3,13 +3,14 @@ location: source_directories: - /data repositories: - - 'ssh://root@lewis.hyp/mnt/kingston1TB/hosts/{{ ansible_hostname }}' + - 'ssh://root@lewis.hyp/mnt/backups/hosts/{{ ansible_hostname }}' retention: keep_daily: 7 keep_weekly: 4 keep_monthly: 6 storage: unknown_unencrypted_repo_access_is_ok: true + relocated_repo_access_is_ok: true hooks: before_everything: - 'apprise --body="{{ ansible_hostname }}: Stopping VMs" {{ apprise_url }} || true'