diff options
author | Remi Collet <remi@remirepo.net> | 2019-05-07 18:06:05 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2019-05-07 18:06:05 +0200 |
commit | a3657c6be7ed08b1a73a2ab6c83c46ac42e73f1f (patch) | |
tree | 91f3897e9059ffa7143c2a083912af6c1874aa99 | |
parent | 84ed318cd570041f468b53d1a80115bacef32515 (diff) |
RHEL-8 is GA
-rw-r--r-- | wizard/index.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/wizard/index.php b/wizard/index.php index debdeb8a..6e996bd9 100644 --- a/wizard/index.php +++ b/wizard/index.php @@ -9,9 +9,9 @@ </head> <?php define('FC_EOL', 27); -define('FC_DEV', 30); +define('FC_DEV', 31); define('EL_EOL', 5); -define('EL_DEV', 8); +define('EL_DEV', 9); define('COUNTER', __DIR__ . "/counter.txt"); $osvers = [ @@ -48,7 +48,7 @@ $osmax = [ 'Fedora 27' => '7.3', ]; $osname = [ - 'RHEL 8' => 'RHEL-8-Beta (Development version, not ready for production)', + 'RHEL 8' => 'RHEL-8', 'RHEL 7' => 'RHEL-7', 'RHEL 6' => 'RHEL-6 (maintained until March 2020)', 'CentOS 7' => 'CentOS 7', @@ -183,7 +183,7 @@ if ($php && $os && $type && !$err) { } else { $mod = ($ver >= 8); - if ($ver >= EL_DEV) { + if ($ver >= 8) { $yum = 'dnf'; printf("<li>EPEL repository is not yet available.</li><br/>"); } else { @@ -198,7 +198,7 @@ if ($php && $os && $type && !$err) { printf("<li>Command to install the yum-utils package (for the yum-config-manager command):"); printf("<pre> $yum install yum-utils</pre>"); printf("</li><br />"); - if ($dist == 'RHEL' && $ver < EL_DEV) { + if ($dist == 'RHEL' && $ver < 8) { printf("<li>On <b>RHEL</b> you (probably) need to enable the <b>optional channel</b> for some dependencies.</li><br />"); printf("</li><li>Command to enable:"); if ($ver == 7) { |