Merge "Install python-redis from pip"

This commit is contained in:
Jenkins 2015-02-24 12:54:33 +00:00 committed by Gerrit Code Review
commit 2960ea1dea
2 changed files with 3 additions and 4 deletions

View File

@ -2,4 +2,3 @@ python-pymongo
mongodb-server
pkg-config
redis-server # NOPRIME
python-redis # NOPRIME

View File

@ -147,13 +147,13 @@ function configure_zaqar {
function configure_redis {
if is_ubuntu; then
install_package redis-server
pip_install redis
elif is_fedora; then
install_package redis
pip_install redis
else
exit_distro_not_supported "redis installation"
fi
install_package python-redis
}
function configure_mongodb {