diff options
author | Remi Collet <remi@remirepo.net> | 2021-11-09 16:08:24 +0100 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2021-11-09 16:08:24 +0100 |
commit | e761126af3c115b03debe94c8436ed50ed95a1a3 (patch) | |
tree | f19d43641f025d8402b9d24f0ef9e09aa390e932 /wizard | |
parent | b4ef6487656a4e1f446f0f9eb2d446c7cb6118e5 (diff) |
Wizard: EL-9 also have 7.4
Diffstat (limited to 'wizard')
-rw-r--r-- | wizard/index.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/wizard/index.php b/wizard/index.php index b30797b4..91f9ece7 100644 --- a/wizard/index.php +++ b/wizard/index.php @@ -18,6 +18,7 @@ $osvers = [ 'RHEL 9' => ['8.0'], 'RHEL 8' => ['7.2','7.3', '7.4'], 'RHEL 7' => '5.4', + 'CentOS 9' => ['8.0'], 'CentOS 8' => ['7.2','7.3', '7.4'], 'CentOS 7' => '5.4', 'Fedora 35' => '8.0', @@ -25,9 +26,10 @@ $osvers = [ 'Fedora 33' => '7.4', ]; $osmin = [ - 'RHEL 9' => '8.0', + 'RHEL 9' => '7.4', 'RHEL 8' => '5.6', 'RHEL 7' => '5.4', + 'CentOS 9' => '7.4', 'CentOS 8' => '5.6', 'CentOS 7' => '5.4', 'Fedora 35' => '5.6', @@ -38,6 +40,7 @@ $osmax = [ 'RHEL 9' => '8.1', 'RHEL 8' => '8.1', 'RHEL 7' => '8.1', + 'CentOS 9' => '8.1', 'CentOS 8' => '8.1', 'CentOS 7' => '8.1', 'Fedora 35' => '8.1', |