From 1df2e24b2b2e1ba65ba25d993b244dd2db1264bc Mon Sep 17 00:00:00 2001 From: Ian Wienand Date: Tue, 9 Aug 2022 14:34:12 +1000 Subject: [PATCH] install-borg: update to borg 1.1.18 This is the latest 1.1.18 release, and from the changelog there doesn't seem to be anything important we need to take into account from 1.1.14. Just as a note the 1.2 series is released, but this requires much more thought when updating. Change-Id: I949c40e9046008d4f442b322a267ce0c967a99dc --- playbooks/roles/install-borg/defaults/main.yaml | 2 +- testinfra/test_borg_backups.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/playbooks/roles/install-borg/defaults/main.yaml b/playbooks/roles/install-borg/defaults/main.yaml index 43130b55d0..9fcf2d0257 100644 --- a/playbooks/roles/install-borg/defaults/main.yaml +++ b/playbooks/roles/install-borg/defaults/main.yaml @@ -1 +1 @@ -borg_version: 1.1.14 +borg_version: 1.1.18 diff --git a/testinfra/test_borg_backups.py b/testinfra/test_borg_backups.py index d395abe047..6839c7b6d5 100644 --- a/testinfra/test_borg_backups.py +++ b/testinfra/test_borg_backups.py @@ -28,7 +28,7 @@ def test_borg_installed(host): assert cmd.succeeded # NOTE(ianw): deliberately pinned; we want to be careful if we # update that the new version is compatible with old repos. - assert '1.1.14' in cmd.stdout + assert '1.1.18' in cmd.stdout def test_borg_server_users(host): hostname = host.backend.get_hostname()