summaryrefslogtreecommitdiff
path: root/devstack
diff options
context:
space:
mode:
Diffstat (limited to 'devstack')
-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() {