Install python-redis from pip
Following the leads of I47b7e787771683c2fc4404e586f11c1a19aac15c and as an attempt to fix a bug blocking Zaqar's gate, this patch installs python-redis from pypi instead of using the distro package. Change-Id: Idfef2fe1b41b44c4cba6b6948b621bc44e77659b
This commit is contained in:
parent
889f604642
commit
b592454e51
@ -2,4 +2,3 @@ python-pymongo
|
|||||||
mongodb-server
|
mongodb-server
|
||||||
pkg-config
|
pkg-config
|
||||||
redis-server # NOPRIME
|
redis-server # NOPRIME
|
||||||
python-redis # NOPRIME
|
|
@ -147,13 +147,13 @@ function configure_zaqar {
|
|||||||
function configure_redis {
|
function configure_redis {
|
||||||
if is_ubuntu; then
|
if is_ubuntu; then
|
||||||
install_package redis-server
|
install_package redis-server
|
||||||
|
pip_install redis
|
||||||
elif is_fedora; then
|
elif is_fedora; then
|
||||||
install_package redis
|
install_package redis
|
||||||
|
pip_install redis
|
||||||
else
|
else
|
||||||
exit_distro_not_supported "redis installation"
|
exit_distro_not_supported "redis installation"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
install_package python-redis
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function configure_mongodb {
|
function configure_mongodb {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user