Merge "Add global venv enable/disable knob"

This commit is contained in:
Jenkins
2015-03-26 20:32:31 +00:00
committed by Gerrit Code Review
8 changed files with 55 additions and 3 deletions
+3
View File
@@ -151,9 +151,12 @@ EOF
else
exit_distro_not_supported "mysql installation"
fi
}
function install_database_python_mysql {
# Install Python client module
pip_install MySQL-python
ADDITIONAL_VENV_PACKAGES+=",MySQL-python"
}
function database_connection_url_mysql {
+3
View File
@@ -100,9 +100,12 @@ EOF
else
exit_distro_not_supported "postgresql installation"
fi
}
function install_database_python_postgresql {
# Install Python client module
pip_install psycopg2
ADDITIONAL_VENV_PACKAGES+=",psycopg2"
}
function database_connection_url_postgresql {