From 586eff8a9230264ea191da1d620598ca3d50e4b7 Mon Sep 17 00:00:00 2001 From: Pierre JACQUOT <pierre.jacquot@inria.fr> Date: Tue, 6 Sep 2022 09:27:24 +0200 Subject: [PATCH] [gen::wiki] Add rocky9 next to rocky8 in env table. --- lib/refrepo/gen/wiki/generators/environments.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/refrepo/gen/wiki/generators/environments.rb b/lib/refrepo/gen/wiki/generators/environments.rb index 75a561270de..ef35b6ef14b 100644 --- a/lib/refrepo/gen/wiki/generators/environments.rb +++ b/lib/refrepo/gen/wiki/generators/environments.rb @@ -2,7 +2,7 @@ class EnvironmentsGenerator < WikiGenerator - OSVERSION_SORT_ORDER = ['debian10','debian11','debiantesting','centos7','centos8','rocky8','centosstream8','ubuntu1804','ubuntu2004'] + OSVERSION_SORT_ORDER = ['debian10','debian11','debiantesting','centos7','centos8','rocky8', 'rocky9', 'centosstream8','ubuntu1804','ubuntu2004'] VARIANT_SORT_ORDER = ['min','base','xen', 'nfs', 'big', 'std'] # FIXME Update the description of envs to something more sensible instead of overwriting here. DESC = { @@ -23,6 +23,7 @@ class EnvironmentsGenerator < WikiGenerator 'centos8-min' => 'centos 8 minimalistic installation', 'centosstream8-min' => 'centos-stream 8 minimalistic installation', 'rocky8-min' => 'rocky 8 minimalistic installation', + 'rocky9-min' => 'rocky 9 minimalistic installation', 'debiantesting-min' => 'debian testing minimalistic installation', } -- GitLab