From 68e9ffffe329b55844a3e3450add6f21cdcd7c1c Mon Sep 17 00:00:00 2001 From: Mr Chen Date: Tue, 23 Jul 2024 15:14:13 +0800 Subject: [PATCH] Update index.py --- plugins/mysql-apt/index.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/plugins/mysql-apt/index.py b/plugins/mysql-apt/index.py index feca1176b..f7107140c 100755 --- a/plugins/mysql-apt/index.py +++ b/plugins/mysql-apt/index.py @@ -3499,6 +3499,10 @@ def installPreInspection(version): if sysName == 'debian' and sysId == '12' and version == '8.0': return 'debian12,暂时不支持8.0' + if version == '9.0': + if sysName == 'debian' and sysId != '12' + return '9.0 仅支持debian12' + if (sysName == 'ubuntu' and version == '5.7' and not sysId in ('18.04')): return "Ubuntu Apt MySQL[" + version + "] 仅支持18.04"