From 79a44f4b151c398c98654ffe175a3d3ac7b9c162 Mon Sep 17 00:00:00 2001 From: Mr Chen Date: Tue, 23 Jul 2024 15:21:48 +0800 Subject: [PATCH] Update index.py --- plugins/mysql-apt/index.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/mysql-apt/index.py b/plugins/mysql-apt/index.py index e93821418..aa53f6400 100755 --- a/plugins/mysql-apt/index.py +++ b/plugins/mysql-apt/index.py @@ -3502,6 +3502,8 @@ def installPreInspection(version): if version == '9.0': if sysName == 'debian' and sysId != '12': return '9.0 仅支持debian12' + if sysName == 'ubuntu' and sysId != '24.04': + return '9.0 仅支持ubuntu24.04' if (sysName == 'ubuntu' and version == '5.7' and not sysId in ('18.04')): return "Ubuntu Apt MySQL[" + version + "] 仅支持18.04"