From 12a3c762f30e977e00c1fc7cd4d77f3c5c6486b2 Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Fri, 9 Sep 2022 10:51:08 +0200 Subject: [PATCH] Set MariaDB 10.6 properly --- wo/core/variables.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/wo/core/variables.py b/wo/core/variables.py index 10833bc..3bf07b7 100644 --- a/wo/core/variables.py +++ b/wo/core/variables.py @@ -182,10 +182,7 @@ class WOVar(): else: mariadb_ver = '10.3' else: - if wo_platform_codename == 'jammy': - mariadb_ver = '10.8' - else: - mariadb_ver = '10.5' + mariadb_ver = '10.6' wo_mysql = wo_mysql + ["mariadb-backup"] wo_mysql_client = ["mariadb-client", "python3-mysqldb"]