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:
parent
6437ea37db
commit
40dcac33ec
@ -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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user