From: Devrim Gunduz Date: Mon, 8 Dec 2025 21:01:53 +0000 (+0300) Subject: dnf module disable is only for RHEL 8 actually X-Git-Url: http://git.postgresql.org/gitweb/stat%3Cscript%20data-cfasync=?a=commitdiff_plain;p=pgweb.git dnf module disable is only for RHEL 8 actually --- 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;