diff --git a/CHANGELOG b/CHANGELOG index 42bdc40..8525c6d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +* Wed Sep 11 2024 Steven Pritchard - 0.5.0 +- [puppetsync] Add EL9 support + * Wed Oct 11 2023 Steven Pritchard - 0.4.0 - [puppetsync] Updates for Puppet 8 - These updates may include the following: diff --git a/metadata.json b/metadata.json index 291d0da..e9884c4 100644 --- a/metadata.json +++ b/metadata.json @@ -1,6 +1,6 @@ { "name": "simp-rkhunter", - "version": "0.4.0", + "version": "0.5.0", "author": "SIMP Team", "summary": "A SIMP puppet module for managing rkhunter", "license": "Apache-2.0", @@ -25,33 +25,38 @@ "operatingsystem": "CentOS", "operatingsystemrelease": [ "7", - "8" + "8", + "9" ] }, { "operatingsystem": "RedHat", "operatingsystemrelease": [ "7", - "8" + "8", + "9" ] }, { "operatingsystem": "OracleLinux", "operatingsystemrelease": [ "7", - "8" + "8", + "9" ] }, { "operatingsystem": "Rocky", "operatingsystemrelease": [ - "8" + "8", + "9" ] }, { "operatingsystem": "AlmaLinux", "operatingsystemrelease": [ - "8" + "8", + "9" ] } ], diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 223b5ac..f44bcc2 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -96,7 +96,6 @@ def set_hieradata(hieradata) c.mock_with :rspec c.module_path = File.join(fixture_path, 'modules') - c.manifest_dir = File.join(fixture_path, 'manifests') if c.respond_to?(:manifest_dir) c.hiera_config = File.join(fixture_path, 'hieradata', 'hiera.yaml')