Small fix for mariadb migrate

This commit is contained in:
VirtuBox
2023-08-04 16:46:00 +02:00
parent 9b8befed18
commit c9e0c0d1b1
3 changed files with 4 additions and 4 deletions

View File

@@ -9,7 +9,7 @@
# ------------------------------------------------------------------------- # -------------------------------------------------------------------------
# wget -qO wo wops.cc && sudo -E bash wo # wget -qO wo wops.cc && sudo -E bash wo
# ------------------------------------------------------------------------- # -------------------------------------------------------------------------
# Version 3.17.0 - 2023-07-21 # Version 3.17.0 - 2023-08-04
# ------------------------------------------------------------------------- # -------------------------------------------------------------------------
# CONTENTS # CONTENTS

View File

@@ -44,7 +44,7 @@ class WOStackMigrateController(CementBaseController):
if wo_mysql_current_repo: if wo_mysql_current_repo:
current_mysql_version = wo_mysql_current_repo.split('/') current_mysql_version = wo_mysql_current_repo.split('/')
else: else:
Log.error(self, "MariaDB is not installed yet") Log.error(self, "MariaDB is not installed from repository yet")
if 'repo' in current_mysql_version: if 'repo' in current_mysql_version:
current_mysql_version = current_mysql_version[5] current_mysql_version = current_mysql_version[5]

View File

@@ -15,9 +15,9 @@ class WOVar():
"""Intialization of core variables""" """Intialization of core variables"""
# WordOps version # WordOps version
wo_version = "3.16.4" wo_version = "3.17.0"
# WordOps packages versions # WordOps packages versions
wo_wp_cli = "2.7.1" wo_wp_cli = "2.8.1"
wo_adminer = "4.8.1" wo_adminer = "4.8.1"
wo_phpmyadmin = "5.2.0" wo_phpmyadmin = "5.2.0"
wo_extplorer = "2.1.15" wo_extplorer = "2.1.15"