Skip to content

Commit 3ad5100

Browse files
authored
[puppetsync] Add EL9 support (#29)
1 parent 7604155 commit 3ad5100

File tree

7 files changed

+48
-6
lines changed

7 files changed

+48
-6
lines changed

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
* Mon Oct 23 2023 Steven Pritchard <steve@sicura.us> - 0.6.0
2+
- [puppetsync] Add EL9 support
3+
14
* Wed Oct 11 2023 Steven Pritchard <steve@sicura.us> - 0.5.0
25
- [puppetsync] Updates for Puppet 8
36
- These updates may include the following:

data/os/AlmaLinux-9.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
ds389::install::package_list:
3+
- 389-ds-base
4+
ds389::install::dnf_module: 389-directory-server
5+
ds389::install::dnf_stream: stable
6+
ds389::install::dnf_profile: minimal

data/os/CentOS-9.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
3+
ds389::install::package_list:
4+
- 389-ds-base-legacy-tools
5+
6+
ds389::install::dnf_module: 389-ds
7+
ds389::install::dnf_stream: '1.4'
8+
#ds389::install::dnf_profile: undef
9+
ds389::install::dnf_enable_only: true

data/os/OracleLinux-9.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
ds389::install::package_list:
3+
- 389-ds-base-legacy-tools
4+
5+
ds389::install::dnf_module: 389-ds
6+
ds389::install::dnf_stream: '1.4'
7+
#ds389::install::dnf_profile: undef
8+
# There is no profile for 389-ds so just enable it and install
9+
# te packages needed.
10+
ds389::install::dnf_enable_only: true

data/os/RedHat-9.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
---
2+
ds389::install::package_list:
3+
- 389-ds-base-legacy-tools

data/os/Rocky-9.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
ds389::install::package_list:
3+
- 389-ds-base
4+
ds389::install::dnf_module: 389-directory-server
5+
ds389::install::dnf_stream: stable
6+
ds389::install::dnf_profile: minimal

metadata.json

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "simp-ds389",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"author": "SIMP Team",
55
"summary": "Management of 389 Directory Server",
66
"license": "Apache-2.0",
@@ -45,31 +45,36 @@
4545
{
4646
"operatingsystem": "CentOS",
4747
"operatingsystemrelease": [
48-
"8"
48+
"8",
49+
"9"
4950
]
5051
},
5152
{
5253
"operatingsystem": "OracleLinux",
5354
"operatingsystemrelease": [
54-
"8"
55+
"8",
56+
"9"
5557
]
5658
},
5759
{
5860
"operatingsystem": "RedHat",
5961
"operatingsystemrelease": [
60-
"8"
62+
"8",
63+
"9"
6164
]
6265
},
6366
{
6467
"operatingsystem": "Rocky",
6568
"operatingsystemrelease": [
66-
"8"
69+
"8",
70+
"9"
6771
]
6872
},
6973
{
7074
"operatingsystem": "AlmaLinux",
7175
"operatingsystemrelease": [
72-
"8"
76+
"8",
77+
"9"
7378
]
7479
}
7580
],

0 commit comments

Comments
 (0)