Merge "In DevStack install Redis client library via pip, not as system package"

This commit is contained in:
Zuul 2018-10-23 17:11:09 +00:00 committed by Gerrit Code Review
commit 55d6781734
1 changed files with 5 additions and 3 deletions

View File

@ -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() {