Merge pull request #16 from bastelfreak/ubuntu

Fix Ubuntu18/puppet6 CI job
This commit is contained in:
Tim Meusel 2022-02-17 09:31:59 +01:00 committed by GitHub
commit 8197cc3dad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,6 @@
# 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,
}
}