puppet-hashi_stack/spec/setup_acceptance_node.pp
Tim Meusel ea0978356a
Fix Ubuntu18/puppet6 CI job
Because of odd packaging decisions at Puppet Inc, the lsb_release tool
is required on Puppet 6 for the distro facts. It's not in the Ubuntu18
base package.
2022-02-17 09:19:45 +01:00

6 lines
251 B
Puppet

# Needed for os.distro.codebase fact on ubuntu 18 on puppet 6
if $facts['os']['name'] == 'Ubuntu' and $facts['os']['release']['full'] == '18.04' and versioncmp($facts['puppetversion'], '7') <= 0 {
package{'lsb-release':
ensure => present,
}
}