From 56def88caf57e9027fba238a8066e47ede7459d5 Mon Sep 17 00:00:00 2001 From: gau1991 Date: Wed, 4 Mar 2015 12:10:43 +0530 Subject: [PATCH] Fixed dpkg error with MySQL 5.6 --- ee/cli/plugins/stack_migrate.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ee/cli/plugins/stack_migrate.py b/ee/cli/plugins/stack_migrate.py index 23255973..c7611cf8 100644 --- a/ee/cli/plugins/stack_migrate.py +++ b/ee/cli/plugins/stack_migrate.py @@ -79,9 +79,9 @@ class EEStackMigrateController(CementBaseController): Log.info(self, "Updating apt-cache, please wait ...") EEAptGet.update(self) Log.info(self, "Installing MariaDB, please wait ...") - EEAptGet.remove(self, ["libmysqlclient18"]) - EEAptGet.install(self, apt_packages) + EEAptGet.remove(self, ["mysql-common"]) EEAptGet.auto_remove(self) + EEAptGet.install(self, apt_packages) @expose(hide=True) def default(self):