From 91706c81e2af71d4ad2bc7ad9d9c91c8069eff4f Mon Sep 17 00:00:00 2001 From: donoghuc Date: Tue, 9 Jan 2024 12:04:53 -0800 Subject: [PATCH] (PE-37477) Temporarily use puppetlabs-puppetdb branch for testing This allows us to take up latest puppetlabs/postgresql module with gpg key updates. --- acceptance/suites/pre_suite/foss/95_install_pdb.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/acceptance/suites/pre_suite/foss/95_install_pdb.rb b/acceptance/suites/pre_suite/foss/95_install_pdb.rb index 4daa2ffa3..69aa47ce4 100644 --- a/acceptance/suites/pre_suite/foss/95_install_pdb.rb +++ b/acceptance/suites/pre_suite/foss/95_install_pdb.rb @@ -24,7 +24,9 @@ end step 'Install PuppetDB module' do - on(master, puppet('module install puppetlabs-puppetdb')) + # While we sort out a new puppetlabs-puppetdb module release, point to a branch that allows us to take the latest puppetlabs-postgresql module + on(master, 'curl -L https://github.com/puppetlabs/puppetlabs-puppetdb/archive/refs/heads/bump-postgres.tar.gz --output /tmp/puppetlabs-puppetdb') + on(master, puppet('module install /tmp/puppetlabs-puppetdb')) end if master.platform.variant == 'debian'