Commit 2e9474eb by Edward Zarecor

Merge pull request #2537 from edx/e0d/fix-mysql-install

Need to install Python-MySQL pre-reqs
parents 3939babf 06153b69
......@@ -23,6 +23,7 @@ EDX_ANSIBLE_DUMP_VARS: false
edx_ansible_debian_pkgs:
- python-pip
- python-apt
- libmysqlclient-dev
- git-core
- build-essential
- python-dev
......
......@@ -277,7 +277,7 @@ if [[ ! -x /usr/bin/git || ! -x /usr/bin/pip ]]; then
/usr/bin/apt-get update
/usr/bin/apt-get install -y git python-pip python-apt \\
git-core build-essential python-dev libxml2-dev \\
libxslt-dev curl --force-yes
libxslt-dev curl libmysqlclient-dev --force-yes
fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment