From a93b4679e817811430fa5121bc9cb109c00978d9 Mon Sep 17 00:00:00 2001 From: Warren Usui Date: Wed, 19 Jun 2013 11:29:38 -0700 Subject: [PATCH] Include MySQLdb Fixes: #5120 --- bootstrap | 2 +- requirements.txt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/bootstrap b/bootstrap index ebecbad7b68ad..695180621706c 100755 --- a/bootstrap +++ b/bootstrap @@ -1,7 +1,7 @@ #!/bin/sh set -e -for package in python-dev python-pip python-virtualenv libevent-dev python-libvirt; do +for package in python-dev python-pip python-virtualenv libevent-dev python-libvirt libmysqlclient-dev; do if [ "$(dpkg --status -- $package|sed -n 's/^Status: //p')" != "install ok installed" ]; then # add a space after old values missing="${missing:+$missing }$package" diff --git a/requirements.txt b/requirements.txt index 5c3110fd3c321..ce94d5d9c67e1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -13,3 +13,4 @@ fudge >=1.0.3 boto >=2.0b4 pexpect requests ==0.14.0 +MySQL-python ==1.2.3 -- 2.39.5