Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[puppetsync] Add EL9 support #104

Merged
merged 1 commit into from
Oct 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
* Mon Oct 23 2023 Steven Pritchard <[email protected]> - 6.9.0
- [puppetsync] Add EL9 support

* Wed Oct 11 2023 Steven Pritchard <[email protected]> - 6.8.0
- [puppetsync] Updates for Puppet 8
- These updates may include the following:
Expand Down
2 changes: 2 additions & 0 deletions data/os/AlmaLinux-9.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
rsync::server::package: rsync-daemon
2 changes: 2 additions & 0 deletions data/os/CentOS-9.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
rsync::server::package: rsync-daemon
2 changes: 2 additions & 0 deletions data/os/OracleLinux-9.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
rsync::server::package: rsync-daemon
2 changes: 2 additions & 0 deletions data/os/Rocky-9.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
rsync::server::package: rsync-daemon
17 changes: 11 additions & 6 deletions metadata.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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"
]
}
],
Expand Down
Loading