summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--devstack/plugin.sh9
1 files changed, 8 insertions, 1 deletions
diff --git a/devstack/plugin.sh b/devstack/plugin.sh
index 608ce2f3..7036addd 100644
--- a/devstack/plugin.sh
+++ b/devstack/plugin.sh
@@ -96,7 +96,14 @@ function _ceilometer_install_redis {
else
# This will fail (correctly) where a redis package is unavailable
install_package redis
- restart_service redis
+ if is_suse; then
+ # opensuse intsall multi-instance version of redis
+ # and admin is expected to install the required conf
+ cp /etc/redis/default.conf.example /etc/redis/default.conf
+ restart_service redis@default
+ else
+ restart_service redis
+ fi
fi
pip_install_gr redis