diff options
author | Remi Collet <remi@remirepo.net> | 2025-05-13 11:05:13 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2025-05-13 11:05:13 +0200 |
commit | e6a8f8d84663a21d3b6d922a82667c3ac30225bb (patch) | |
tree | ddcc7613cae040a6be5bafbb816c98e554140507 /wizard/index.php | |
parent | b7492293fb6a14cb4381ed23aa4978719db8b754 (diff) |
Diffstat (limited to 'wizard/index.php')
-rw-r--r-- | wizard/index.php | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/wizard/index.php b/wizard/index.php index 773aabda..01252c42 100644 --- a/wizard/index.php +++ b/wizard/index.php @@ -11,17 +11,18 @@ define('FC_EOL', 40); define('FC_DEV', 43); define('EL_EOL', 7); -define('EL_DEV', 10); +define('EL_DEV', 11); define('PHP_SEC', '8.1'); define('EPEL_DEV', 2); // 0 missing, 1 partially populated, 2 mostly full define('COUNTER', __DIR__ . "/counter.txt"); $osvers = [ 'RHEL 10' => ['8.3'], - 'RHEL 9' => ['8.0', '8.1', '8.2'], + 'RHEL 9' => ['8.0', '8.1', '8.2', '8.3'], 'RHEL 8' => ['7.4', '8.0', '8.2'], 'CentOS 10' => ['8.3'], - 'CentOS 9' => ['8.0', '8.1', '8.2'], + 'CentOS 9' => ['8.0', '8.1', '8.2', '8.3'], + 'EL 10' => ['8.3'], 'EL 9' => ['8.0', '8.1', '8.2'], 'EL 8' => ['7.4', '8.0', '8.2'], 'Fedora 42' => '8.3', @@ -34,6 +35,7 @@ $osmin = [ 'RHEL 8' => '5.6', 'CentOS 10' => '7.4', 'CentOS 9' => '7.4', + 'EL 10' => '7.4', 'EL 9' => '7.4', 'EL 8' => '5.6', 'Fedora 42' => '7.4', @@ -46,6 +48,7 @@ $osminbase = [ 'RHEL 8' => '7.2', 'CentOS 10' => '7.4', 'CentOS 9' => '7.4', + 'EL 10' => '7.4', 'EL 9' => '7.4', 'EL 8' => '7.2', 'Fedora 42' => '7.4', @@ -58,6 +61,7 @@ $osmax = [ 'RHEL 8' => '8.4', 'CentOS 10' => '8.4', 'CentOS 9' => '8.4', + 'EL 10' => '8.4', 'EL 9' => '8.4', 'EL 8' => '8.4', 'Fedora 42' => '8.4', @@ -66,13 +70,14 @@ $osmax = [ ]; $osname = [ ':rhel' => 'Red Hat Enterprise Linux', - 'RHEL 10' => 'RHEL 10.0-Beta (Development version)', - 'RHEL 9' => 'RHEL 9.5', // (maintained until May 31, 2032) + 'RHEL 10' => 'RHEL 10.0', // (maintained until May 31, 2035) + 'RHEL 9' => 'RHEL 9.6', // (maintained until May 31, 2032) 'RHEL 8' => 'RHEL 8.10', // (maintained until May 31, 2029) ':centos' => 'CentOS Stream', - 'CentOS 10' => 'CentOS Stream 10', + 'CentOS 10' => 'CentOS Stream 10',// (maintained until May 31, 2030) 'CentOS 9' => 'CentOS Stream 9', // (maintained until May 31, 2027) ':clone' => 'Alma Linux, Rocky Linux and other clones', + 'EL 10' => 'EL 10', 'EL 9' => 'EL 9', 'EL 8' => 'EL 8', ':fedora' => 'Fedora Linux', |