From 51ff745be714b27e8551f52a0e877c7d48104aa5 Mon Sep 17 00:00:00 2001 From: Devrim Gunduz Date: Tue, 9 Dec 2025 00:01:53 +0300 Subject: [PATCH] dnf module disable is only for RHEL 8 actually --- templates/downloads/js/yum.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/downloads/js/yum.js b/templates/downloads/js/yum.js index 484334bf..7ea636de 100644 --- a/templates/downloads/js/yum.js +++ b/templates/downloads/js/yum.js @@ -39,7 +39,7 @@ function get_installer(plat) { function disable_module_on(plat) { if (plat.startsWith('EL-')) { var a = plat.split('-'); - if (a[1] >= 8) + if (a[1] == 8) return true; } return false; -- 2.39.5