diff options
author | Remi Collet <remi@remirepo.net> | 2019-09-24 09:05:12 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2019-09-24 09:05:12 +0200 |
commit | 125b1919e18cb3e7f3bf145a8acf3372128e22fe (patch) | |
tree | 4b666a7e63e1ce64749deb026bf17917ec389b1b | |
parent | 92d569465ab9dc7baac32bafbbe9fd8bab832450 (diff) |
Wizard: add CentOS 8
-rw-r--r-- | wizard/index.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/wizard/index.php b/wizard/index.php index 07a76aa9..2cf18562 100644 --- a/wizard/index.php +++ b/wizard/index.php @@ -18,6 +18,7 @@ $osvers = [ 'RHEL 8' => '7.2', 'RHEL 7' => '5.4', 'RHEL 6' => '5.3', + 'CentOS 8' => '7.2', 'CentOS 7' => '5.4', 'CentOS 6' => '5.3', 'Fedora 31' => '7.3', @@ -28,6 +29,7 @@ $osmin = [ 'RHEL 8' => '7.2', 'RHEL 7' => '5.4', 'RHEL 6' => '5.4', + 'CentOS 8' => '7.2', 'CentOS 7' => '5.4', 'CentOS 6' => '5.4', 'Fedora 31' => '5.6', @@ -38,6 +40,7 @@ $osmax = [ 'RHEL 8' => '7.4', 'RHEL 7' => '7.4', 'RHEL 6' => '7.3', + 'CentOS 8' => '7.4', 'CentOS 7' => '7.4', 'CentOS 6' => '7.3', 'Fedora 31' => '7.4', @@ -46,9 +49,10 @@ $osmax = [ ]; $osname = [ 'RHEL 8' => 'RHEL-8', - 'RHEL 7' => 'RHEL-7', + 'RHEL 7' => 'RHEL-7 (maintained until June 2024)', 'RHEL 6' => 'RHEL-6 (maintained until March 2020)', - 'CentOS 7' => 'CentOS 7', + 'CentOS 8' => 'CentOS 8', + 'CentOS 7' => 'CentOS 7 (maintained until June 2024)', 'CentOS 6' => 'CentOS 6 (maintained until March 2020)', 'Fedora 31' => 'Fedora 31 (development version)', 'Fedora 30' => 'Fedora 30', |