From 33321de2300f916898a09bc4108d817437913ca0 Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Mon, 23 May 2022 16:10:39 +0200 Subject: [PATCH] Set back MariaDB 10.5 waiting for package for Ubuntu 22.04 --- wo/core/variables.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wo/core/variables.py b/wo/core/variables.py index a3fc51b..39bba81 100644 --- a/wo/core/variables.py +++ b/wo/core/variables.py @@ -175,7 +175,7 @@ class WOVar(): else: mariadb_ver = '10.3' else: - mariadb_ver = '10.6' + mariadb_ver = '10.5' wo_mysql = wo_mysql + ["mariadb-backup"] wo_mysql_client = ["mariadb-client", "python3-mysqldb"] @@ -187,7 +187,7 @@ class WOVar(): # APT repositories wo_mysql_repo = ("deb [arch=amd64,arm64,ppc64el] " "http://mariadb.mirrors.ovh.net/MariaDB/repo/" - "10.6/{distro} {codename} main" + "10.5/{distro} {codename} main" .format(distro=wo_distro, codename=wo_platform_codename)) if wo_distro == 'ubuntu':