diff --git a/CHANGELOG b/CHANGELOG index 04cc903..00b07e1 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +* Mon Oct 23 2023 Steven Pritchard - 6.9.0 +- [puppetsync] Add EL9 support + * Wed Oct 11 2023 Steven Pritchard - 6.8.0 - [puppetsync] Updates for Puppet 8 - These updates may include the following: diff --git a/data/os/AlmaLinux-9.yaml b/data/os/AlmaLinux-9.yaml new file mode 100644 index 0000000..995bd97 --- /dev/null +++ b/data/os/AlmaLinux-9.yaml @@ -0,0 +1,2 @@ +--- +rsync::server::package: rsync-daemon diff --git a/data/os/CentOS-9.yaml b/data/os/CentOS-9.yaml new file mode 100644 index 0000000..995bd97 --- /dev/null +++ b/data/os/CentOS-9.yaml @@ -0,0 +1,2 @@ +--- +rsync::server::package: rsync-daemon diff --git a/data/os/OracleLinux-9.yaml b/data/os/OracleLinux-9.yaml new file mode 100644 index 0000000..995bd97 --- /dev/null +++ b/data/os/OracleLinux-9.yaml @@ -0,0 +1,2 @@ +--- +rsync::server::package: rsync-daemon diff --git a/data/os/Rocky-9.yaml b/data/os/Rocky-9.yaml new file mode 100644 index 0000000..995bd97 --- /dev/null +++ b/data/os/Rocky-9.yaml @@ -0,0 +1,2 @@ +--- +rsync::server::package: rsync-daemon diff --git a/metadata.json b/metadata.json index 54a09ed..c7ee4e3 100644 --- a/metadata.json +++ b/metadata.json @@ -1,6 +1,6 @@ { "name": "simp-rsync", - "version": "6.8.0", + "version": "6.9.0", "author": "SIMP Team", "summary": "manage an rsync server, secured by stunnel", "license": "Apache-2.0", @@ -49,33 +49,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" ] } ],