From 18b617c3a78b9ca8c47b717eda372d8832a8bffb Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 7 Sep 2021 09:17:07 +0200 Subject: Wizard: add F35, remove F32 --- wizard/index.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/wizard/index.php b/wizard/index.php index ae29aaf8..95da4714 100644 --- a/wizard/index.php +++ b/wizard/index.php @@ -19,27 +19,27 @@ $osvers = [ 'RHEL 7' => '5.4', 'CentOS 8' => ['7.2','7.3', '7.4'], 'CentOS 7' => '5.4', + 'Fedora 35' => '7.4', 'Fedora 34' => '7.4', 'Fedora 33' => '7.4', - 'Fedora 32' => '7.4', ]; $osmin = [ 'RHEL 8' => '5.6', 'RHEL 7' => '5.4', 'CentOS 8' => '5.6', 'CentOS 7' => '5.4', + 'Fedora 35' => '5.6', 'Fedora 34' => '5.6', 'Fedora 33' => '5.6', - 'Fedora 32' => '5.6', ]; $osmax = [ 'RHEL 8' => '8.1', 'RHEL 7' => '8.1', 'CentOS 8' => '8.1', 'CentOS 7' => '8.1', + 'Fedora 35' => '8.1', 'Fedora 34' => '8.1', 'Fedora 33' => '8.1', - 'Fedora 32' => '8.0', ]; $osname = [ ':rhel' => 'Red Hat Enterprise Linux', @@ -49,9 +49,10 @@ $osname = [ 'CentOS 8' => 'CentOS 8.4.2105', 'CentOS 7' => 'CentOS 7.9.2009 (maintained until June 2024)', ':fedora' => 'Fedora Linux', + 'Fedora 35' => 'Fedora 35 (Development version)', 'Fedora 34' => 'Fedora 34', 'Fedora 33' => 'Fedora 33', - 'Fedora 32' => 'Fedora 32 (End of life since May 2021)', +// 'Fedora 32' => 'Fedora 32 (End of life since May 2021)', ]; $types = [ 'base' => 'Default / Single version (simplest way)', -- cgit