Browse code

Merge "Install python-redis from pip"

Jenkins authored on 2015/02/24 21:54:33
Showing 2 changed files
... ...
@@ -1,5 +1,4 @@
1 1
 python-pymongo
2 2
 mongodb-server
3 3
 pkg-config
4
-redis-server # NOPRIME
5
-python-redis # NOPRIME
6 4
\ No newline at end of file
5
+redis-server # NOPRIME
7 6
\ No newline at end of file
... ...
@@ -147,13 +147,13 @@ function configure_zaqar {
147 147
 function configure_redis {
148 148
     if is_ubuntu; then
149 149
         install_package redis-server
150
+        pip_install redis
150 151
     elif is_fedora; then
151 152
         install_package redis
153
+        pip_install redis
152 154
     else
153 155
         exit_distro_not_supported "redis installation"
154 156
     fi
155
-
156
-    install_package python-redis
157 157
 }
158 158
 
159 159
 function configure_mongodb {