From b592454e5113b19fba6f6cacfd97bcb8ec11f4f3 Mon Sep 17 00:00:00 2001 From: Flavio Percoco Date: Fri, 20 Feb 2015 13:51:22 +0100 Subject: [PATCH] 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 --- files/debs/zaqar-server | 3 +-- lib/zaqar | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/files/debs/zaqar-server b/files/debs/zaqar-server index 32b10179b0..6c2a4d154a 100644 --- a/files/debs/zaqar-server +++ b/files/debs/zaqar-server @@ -1,5 +1,4 @@ python-pymongo mongodb-server pkg-config -redis-server # NOPRIME -python-redis # NOPRIME \ No newline at end of file +redis-server # NOPRIME \ No newline at end of file diff --git a/lib/zaqar b/lib/zaqar index 4a24415248..c9321b997f 100644 --- a/lib/zaqar +++ b/lib/zaqar @@ -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 {