Skip to content

Commit 78e6cc8

Browse files
committed
Update supported platforms
1 parent 0368d3c commit 78e6cc8

File tree

3 files changed

+35
-13
lines changed

3 files changed

+35
-13
lines changed

manifests/license.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
#
2222
class zend_common::license (
2323
Optional[String[1]] $content = undef,
24-
Optional[String[1]] $source = undef,
24+
Optional[String[1]] $source = undef,
2525
) {
2626
if $content {
2727
file { '/opt/zend/zendphp/etc/license':

manifests/repo.pp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@
6969

7070
case $facts['os']['family'] {
7171
'Debian': {
72-
$supported_debian = $facts['os']['release']['major'] in ['9', '10', '11']
73-
$supported_ubuntu = $facts['os']['release']['major'] in ['16.04', '18.04', '20.04', '22.04']
72+
$supported_debian = $facts['os']['release']['major'] in ['10', '11', '12']
73+
$supported_ubuntu = $facts['os']['release']['major'] in ['20.04', '22.04', '24.04', '22.04']
7474
unless $supported_debian or $supported_ubuntu {
7575
fail($unsupported)
7676
}
@@ -106,7 +106,7 @@
106106
}
107107

108108
'RedHat': {
109-
unless $facts['os']['release']['major'] in ['2', '6', '7', '8'] {
109+
unless $facts['os']['release']['major'] in ['2', '7', '8', '9'] {
110110
fail($unsupported)
111111
}
112112

metadata.json

Lines changed: 31 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,20 @@
1818
}
1919
],
2020
"operatingsystem_support": [
21+
{
22+
"operatingsystem": "Alpine",
23+
"operatingsystemrelease": [
24+
"3.18",
25+
"3.20"
26+
]
27+
},
28+
{
29+
"operatingsystem": "Alma",
30+
"operatingsystemrelease": [
31+
"8",
32+
"9"
33+
]
34+
},
2135
{
2236
"operatingsystem": "Amazon",
2337
"operatingsystemrelease": [
@@ -30,35 +44,43 @@
3044
"7"
3145
]
3246
},
47+
{
48+
"operatingsystem": "Debian",
49+
"operatingsystemrelease": [
50+
"10",
51+
"11",
52+
"12"
53+
]
54+
},
3355
{
3456
"operatingsystem": "OracleLinux",
3557
"operatingsystemrelease": [
36-
"6",
3758
"7",
38-
"8"
59+
"8",
60+
"9"
3961
]
4062
},
4163
{
4264
"operatingsystem": "RedHat",
4365
"operatingsystemrelease": [
4466
"7",
45-
"8"
67+
"8",
68+
"9"
4669
]
4770
},
4871
{
49-
"operatingsystem": "Debian",
72+
"operatingsystem": "Rocky",
5073
"operatingsystemrelease": [
51-
"9",
52-
"10",
53-
"11"
74+
"8",
75+
"9"
5476
]
5577
},
5678
{
5779
"operatingsystem": "Ubuntu",
5880
"operatingsystemrelease": [
59-
"18.04",
6081
"20.04",
61-
"22.04"
82+
"22.04",
83+
"24.04"
6284
]
6385
}
6486
],

0 commit comments

Comments
 (0)