summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.openstack.org>2018-10-23 17:11:09 +0000
committerGerrit Code Review <review@openstack.org>2018-10-23 17:11:09 +0000
commit55d6781734e5424470501d36a63362e2d0a7b16a (patch)
tree1fc8408954747dc2b1d0bffc6c5598b2d92eddf6
parent257fc81bc71952dee3a63d9985111ba05b89e6b9 (diff)
parent1786f65e06934eb0a059022eabbdbc5e8d5ecfa2 (diff)
downloadosprofiler-55d6781734e5424470501d36a63362e2d0a7b16a.tar.gz
Merge "In DevStack install Redis client library via pip, not as system package"
-rw-r--r--devstack/lib/osprofiler8
1 files changed, 5 insertions, 3 deletions
diff --git a/devstack/lib/osprofiler b/devstack/lib/osprofiler
index 607a2f4..cd73a4e 100644
--- a/devstack/lib/osprofiler
+++ b/devstack/lib/osprofiler
@@ -42,16 +42,18 @@ done
function install_redis() {
if is_fedora; then
- install_package redis python-redis
+ install_package redis
elif is_ubuntu; then
- install_package redis-server python-redis
+ install_package redis-server
elif is_suse; then
- install_package redis python-redis
+ install_package redis
else
exit_distro_not_supported "redis installation"
fi
start_service redis
+
+ pip_install_gr redis
}
function install_osprofiler_collector() {