From: Mathieu Gagné Date: Sun, 21 Apr 2013 21:46:58 +0000 (-0400) Subject: Fix notification relationship X-Git-Tag: grizzly-eol~15^2~1^2 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=f2ff304078152980052b4cdf7bca4cd0d135332d;p=puppet-modules%2Fpuppet-ceilometer.git Fix notification relationship Relationship was referring to Service[ceilometer] which does not exist. --- diff --git a/manifests/keystone/auth.pp b/manifests/keystone/auth.pp index dfb2116..5593636 100644 --- a/manifests/keystone/auth.pp +++ b/manifests/keystone/auth.pp @@ -55,7 +55,7 @@ class ceilometer::keystone::auth ( $public_protocol = 'http' ) { - Keystone_user_role["${auth_name}@${tenant}"] ~> Service <| name == 'ceilometer' |> + Keystone_user_role["${auth_name}@${tenant}"] ~> Service <| title == 'ceilometer-api' |> keystone_user { $auth_name: ensure => present,