Allow mariadb to be used in place of mysql

Some installs have libmariadbclient-dev already installed, so use that
if it's available.

Change-Id: I630f2f32c3b7b71eb6f348ae6b6838ae8cd6730d
This commit is contained in:
Matthew Thode 2017-08-21 11:46:12 -05:00
parent 6437ea37db
commit 40dcac33ec
No known key found for this signature in database
GPG Key ID: 64A37BEAAE19A4E8

View File

@ -419,8 +419,13 @@ function build_venv {
failure "Can't install liberasurecode-dev. Enable trusty backports or UCA on this host."
exit 99
fi
apt-get -y install liberasurecode-dev > /dev/null
apt-get -y install liberasurecode-dev libmysqlclient-dev > /dev/null
# Install libmysqlclient-dev so that we are later able to build mysql-python
# Allow libmariadbclient-dev to be used instead
if ! apt --installed list | grep libmariadbclient-dev; then
apt-get -y install libmysqlclient-dev > /dev/null
fi
### 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.