Skip to content

Commit 47b5130

Browse files
committed
(maint) Stop testing with PuppetDB on EL6
The recent root certificate expiration has made it difficult to install postgres on EL6. RedHat did not issue an update of the `ca-certificates` package for thie EOL platform, so avoiding the expired cert is much more complicated. Since we will soon be dropping support for EL6, we decided to instead stop testing the PDB integration on this platform. This commit removes it from the list of PDB master platforms. If a good workaround is found, we can put this back.
1 parent ebe63fb commit 47b5130

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

acceptance/lib/helper.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ def puppetdb_supported_platforms()
6464
[
6565
/debian-8/,
6666
/debian-9/,
67-
/el-6/,
6867
/el-7/,
6968
/ubuntu-16.04/,
7069
/ubuntu-18.04/

acceptance/suites/pre_suite/foss/10_update_ca_certs.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
step 'Update CA certs on Centos' do
22
hosts.each do |host|
3-
if host.platform =~ /el/
3+
if host.platform =~ /el-7/
44
on(host, 'yum update -y ca-certificates')
55
elsif host.platform =~ /debian|ubuntu/
66
on(host, 'apt-get update')

0 commit comments

Comments
 (0)