From 6d26cf0c6d08e000fa19e0e244eb17a16e57268a Mon Sep 17 00:00:00 2001 From: git-harry Date: Thu, 13 Jul 2017 09:55:15 +0100 Subject: [PATCH] Ensure mysql-python dependency met `libmysqlclient-dev` is missing, when performing a Kilo to Newton upgrade on a multi-node AIO, causing `mysql-python` to fail to install. This change ensures it is present. Change-Id: Id418929b1713357bea183c50b64219f175aee9bc --- leap-upgrades/lib/functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/leap-upgrades/lib/functions.sh b/leap-upgrades/lib/functions.sh index 97803398..63a48314 100644 --- a/leap-upgrades/lib/functions.sh +++ b/leap-upgrades/lib/functions.sh @@ -383,7 +383,7 @@ function build_venv { exit 99 fi - apt-get -y install liberasurecode-dev > /dev/null + apt-get -y install liberasurecode-dev libmysqlclient-dev > /dev/null ### The venv build is done using a modern version of the py_pkgs plugin which collects all versions of ### the OpenStack components from a given release. This creates 1 large venv per migratory release.