From 8dcb1e489de7892d69d1cc8ec9ff4cd1c2851dd5 Mon Sep 17 00:00:00 2001 From: Alex Vandiver Date: Mon, 27 Dec 2021 23:31:47 +0000 Subject: [PATCH] puppet: Adjust wal-g release version and SHA256. wal-g apparently removed the 1.1.1 release; replace it with the equivalent rc. (cherry picked from commit d2a78bac7e7e276e03baafd15ceac571a674ec57) --- puppet/zulip/manifests/postgresql_backups.pp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/puppet/zulip/manifests/postgresql_backups.pp b/puppet/zulip/manifests/postgresql_backups.pp index e773054d24..c689424d8e 100644 --- a/puppet/zulip/manifests/postgresql_backups.pp +++ b/puppet/zulip/manifests/postgresql_backups.pp @@ -3,10 +3,12 @@ class zulip::postgresql_backups { include zulip::postgresql_common - $wal_g_version = '0.2.15' + $wal_g_version = '1.1.1-rc' + $bin = "/usr/local/bin/wal-g-${wal_g_version}" + $package = "wal-g-pg-ubuntu-20.04-${::architecture}" zulip::sha256_tarball_to { 'wal-g': - url => "https://github.com/wal-g/wal-g/releases/download/v${wal_g_version}/wal-g.linux-amd64.tar.gz", - sha256 => 'ea33c2341d7bfb203c6948590c29834c013ab06a28c7a2b236a73d906f785c84', + url => "https://github.com/wal-g/wal-g/releases/download/v${wal_g_version}/${package}.tar.gz", + sha256 => 'eed4de63c2657add6e0fe70f8c0fbe62a4a54405b9bfc801b1912b6c4f2c7107', install => { 'wal-g' => "/usr/local/bin/wal-g-${wal_g_version}", },