Skip to content

Commit 0dd504a

Browse files
committed
feat: add EL10 support
1 parent b32a25f commit 0dd504a

8 files changed

Lines changed: 48 additions & 5 deletions

File tree

data/common.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
---

data/os/RedHat/AlmaLinux/10.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
# As of v10.6.1, puppetlabs/postgresql does not have EL10 support/data
3+
postgresql::globals::version: '16'
4+
postgresql::globals::default_version: '16'
5+
postgresql::globals::globals_version: '16'

data/os/RedHat/CentOS/10.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
# As of v10.6.1, puppetlabs/postgresql does not have EL10 support/data
3+
postgresql::globals::version: '16'
4+
postgresql::globals::default_version: '16'
5+
postgresql::globals::globals_version: '16'

data/os/RedHat/OracleLinux/10.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
# As of v10.6.1, puppetlabs/postgresql does not have EL10 support/data
3+
postgresql::globals::version: '16'
4+
postgresql::globals::default_version: '16'
5+
postgresql::globals::globals_version: '16'

data/os/RedHat/RedHat/10.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
# As of v10.6.1, puppetlabs/postgresql does not have EL10 support/data
3+
postgresql::globals::version: '16'
4+
postgresql::globals::default_version: '16'
5+
postgresql::globals::globals_version: '16'

data/os/RedHat/Rocky/10.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
# As of v10.6.1, puppetlabs/postgresql does not have EL10 support/data
3+
postgresql::globals::version: '16'
4+
postgresql::globals::default_version: '16'
5+
postgresql::globals::globals_version: '16'

hiera.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
version: 5
3+
4+
hierarchy:
5+
- name: "OS version"
6+
path: "os/%{facts.os.family}/%{facts.os.name}/%{facts.os.release.major}.yaml"
7+
- name: "OS variant"
8+
path: "os/%{facts.os.family}/%{facts.os.name}.yaml"
9+
- name: "OS family"
10+
path: "os/%{facts.os.family}.yaml"
11+
- name: "common"
12+
path: "common.yaml"

metadata.json

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,15 @@
3030
"operatingsystem": "AlmaLinux",
3131
"operatingsystemrelease": [
3232
"8",
33-
"9"
33+
"9",
34+
"10"
3435
]
3536
},
3637
{
3738
"operatingsystem": "CentOS",
3839
"operatingsystemrelease": [
39-
"9"
40+
"9",
41+
"10"
4042
]
4143
},
4244
{
@@ -51,21 +53,24 @@
5153
"operatingsystem": "OracleLinux",
5254
"operatingsystemrelease": [
5355
"8",
54-
"9"
56+
"9",
57+
"10"
5558
]
5659
},
5760
{
5861
"operatingsystem": "RedHat",
5962
"operatingsystemrelease": [
6063
"8",
61-
"9"
64+
"9",
65+
"10"
6266
]
6367
},
6468
{
6569
"operatingsystem": "Rocky",
6670
"operatingsystemrelease": [
6771
"8",
68-
"9"
72+
"9",
73+
"10"
6974
]
7075
},
7176
{

0 commit comments

Comments
 (0)