diff options
author | Remi Collet <remi@remirepo.net> | 2024-05-31 07:34:01 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2024-05-31 07:34:01 +0200 |
commit | ce2501f7c9cd8dbfe59c51375146308c318c2e59 (patch) | |
tree | 3353fc3d2a7c66236a4c81f2039db0a55c6f38c1 | |
parent | 2f29dc02ae887773269e6987a68fdc24e876d274 (diff) |
drop C8
-rw-r--r-- | wizard/index.php | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/wizard/index.php b/wizard/index.php index 67bbc1a5..83727320 100644 --- a/wizard/index.php +++ b/wizard/index.php @@ -17,14 +17,14 @@ define('EPEL_DEV', 2); // 0 missing, 1 partially populated, 2 mostly full define('COUNTER', __DIR__ . "/counter.txt"); $osvers = [ - 'RHEL 9' => ['8.0', '8.1'], - 'RHEL 8' => ['7.4', '8.0'], + 'RHEL 9' => ['8.0', '8.1', '8.2'], + 'RHEL 8' => ['7.4', '8.0', '8.2'], 'RHEL 7' => '5.4', 'CentOS 9' => ['8.0', '8.1', '8.2'], - 'CentOS 8' => ['7.4', '8.0', '8.2'], +// 'CentOS 8' => ['7.4', '8.0', '8.2'], 'CentOS 7' => '5.4', - 'EL 9' => ['8.0', '8.1'], - 'EL 8' => ['7.4', '8.0'], + 'EL 9' => ['8.0', '8.1', '8.2'], + 'EL 8' => ['7.4', '8.0', '8.2'], 'EL 7' => '5.4', 'Fedora 40' => '8.3', 'Fedora 39' => '8.2', @@ -35,7 +35,7 @@ $osmin = [ 'RHEL 8' => '5.6', 'RHEL 7' => '5.4', 'CentOS 9' => '7.4', - 'CentOS 8' => '5.6', +// 'CentOS 8' => '5.6', 'CentOS 7' => '5.4', 'EL 9' => '7.4', 'EL 8' => '5.6', @@ -49,7 +49,7 @@ $osminbase = [ 'RHEL 8' => '7.2', 'RHEL 7' => '5.4', 'CentOS 9' => '7.4', - 'CentOS 8' => '7.2', +// 'CentOS 8' => '7.2', 'CentOS 7' => '5.4', 'EL 9' => '7.4', 'EL 8' => '7.2', @@ -63,7 +63,7 @@ $osmax = [ 'RHEL 8' => '8.3', 'RHEL 7' => '8.3', 'CentOS 9' => '8.3', - 'CentOS 8' => '8.3', +// 'CentOS 8' => '8.3', 'CentOS 7' => '8.3', 'EL 9' => '8.3', 'EL 8' => '8.3', @@ -79,7 +79,7 @@ $osname = [ 'RHEL 7' => 'RHEL 7.9 (maintained until June 30, 2024)', ':centos' => 'CentOS Stream, CentOS Linux', 'CentOS 9' => 'CentOS Stream 9', // (maintained until May 31, 2027) - 'CentOS 8' => 'CentOS Stream 8 (maintained until May 31, 2024)', +// 'CentOS 8' => 'CentOS Stream 8 (maintained until May 31, 2024)', 'CentOS 7' => 'CentOS 7 (maintained until June 30, 2024)', ':clone' => 'Alma Linux, Rocky Linux and other clones', 'EL 9' => 'EL 9', |