diff --git a/metadata.json b/metadata.json index e774ae4..8759b91 100644 --- a/metadata.json +++ b/metadata.json @@ -94,6 +94,13 @@ "operatingsystemrelease": [ "4" ] + }, + { + "operatingsystem": "AlmaLinux", + "operatingsystemrelease": [ + "8", + "9" + ] } ] } diff --git a/spec/setup_acceptance_node.pp b/spec/setup_acceptance_node.pp index 046a2c9..d24c5a7 100644 --- a/spec/setup_acceptance_node.pp +++ b/spec/setup_acceptance_node.pp @@ -1,4 +1,4 @@ -if $facts['os']['name'] == 'CentOS' { +if $facts['os']['name'] == ['CentOS', 'AlmaLinux'] { package { 'epel-release': ensure => installed, before => Package['dhcping'],