diff options
Diffstat (limited to 'wizard/index.php')
| -rw-r--r-- | wizard/index.php | 9 | 
1 files changed, 7 insertions, 2 deletions
diff --git a/wizard/index.php b/wizard/index.php index 767bd75d..229fe7e6 100644 --- a/wizard/index.php +++ b/wizard/index.php @@ -15,15 +15,17 @@ define('EL_DEV', 9);  define('COUNTER', __DIR__ . "/counter.txt");  $osvers = [ +    'RHEL 9'    => ['8.0'],      'RHEL 8'    => ['7.2','7.3', '7.4'],      'RHEL 7'    => '5.4',      'CentOS 8'  => ['7.2','7.3', '7.4'],      'CentOS 7'  => '5.4', -    'Fedora 35' => '7.4', +    'Fedora 35' => '8.0',      'Fedora 34' => '7.4',      'Fedora 33' => '7.4',  ];  $osmin = [ +    'RHEL 9'    => '8.0',      'RHEL 8'    => '5.6',      'RHEL 7'    => '5.4',      'CentOS 8'  => '5.6', @@ -33,6 +35,7 @@ $osmin = [      'Fedora 33' => '5.6',  ];  $osmax = [ +    'RHEL 9'    => '8.1',      'RHEL 8'    => '8.1',      'RHEL 7'    => '8.1',      'CentOS 8'  => '8.1', @@ -43,10 +46,12 @@ $osmax = [  ];  $osname = [  	':rhel'     	=> 'Red Hat Enterprise Linux', +		'RHEL 9'    => 'RHEL 9.0 Beta (Development version)',  		'RHEL 8'    => 'RHEL 8.4',  		'RHEL 7'    => 'RHEL 7.9 (maintained until June 2024)',  	':centos'		=> 'CentOS Linux and other clones', -		'CentOS 8'  => 'CentOS 8.4.2105', +		'CentOS 9'  => 'CentOS 9', +		'CentOS 8'  => 'CentOS 8',  		'CentOS 7'  => 'CentOS 7.9.2009 (maintained until June 2024)',  	':fedora'		=> 'Fedora Linux',  		'Fedora 35' => 'Fedora 35',  | 
