diff --git a/devstack/plugin.sh b/devstack/plugin.sh index b2bdfc3e68..3d951a8a13 100644 --- a/devstack/plugin.sh +++ b/devstack/plugin.sh @@ -71,7 +71,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