Skip to content

Commit

Permalink
Fix acceptance tests on Ubuntu 18.04 with Puppet 6
Browse files Browse the repository at this point in the history
  • Loading branch information
smortex committed Mar 28, 2022
1 parent c1da63a commit b4377dc
Showing 1 changed file with 15 additions and 10 deletions.
25 changes: 15 additions & 10 deletions spec/acceptance/class_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@
pp = <<-EOS
# Configure PuppetDB
class { 'puppetdb':
disable_ssl => true,
manage_firewall => false,
disable_ssl => true,
manage_package_repo => false,
manage_firewall => false,
}
# Configure Puppetboard
Expand Down Expand Up @@ -57,8 +58,9 @@ class { 'apache':
# Configure PuppetDB
class { 'puppetdb':
disable_ssl => true,
manage_firewall => false,
disable_ssl => true,
manage_package_repo => false,
manage_firewall => false,
}
# Configure Puppetboard
Expand Down Expand Up @@ -108,8 +110,9 @@ class { 'puppetboard':
}
# Configure PuppetDB
class { 'puppetdb':
disable_ssl => true,
manage_firewall => false,
disable_ssl => true,
manage_package_repo => false,
manage_firewall => false,
}
EOS

Expand Down Expand Up @@ -148,8 +151,9 @@ class { 'puppetboard::apache::conf':
}
# Configure PuppetDB
class { 'puppetdb':
disable_ssl => true,
manage_firewall => false,
disable_ssl => true,
manage_package_repo => false,
manage_firewall => false,
}
EOS

Expand Down Expand Up @@ -196,8 +200,9 @@ class { 'puppetboard::apache::conf':
}
# Configure PuppetDB
class { 'puppetdb':
disable_ssl => true,
manage_firewall => false,
disable_ssl => true,
manage_package_repo => false,
manage_firewall => false,
}
EOS

Expand Down

0 comments on commit b4377dc

Please sign in to comment.