]> review.fuel-infra Code Review - puppet-modules/puppet-ceilometer.git/commitdiff
Fix notification relationship
authorMathieu Gagné <mgagne@iweb.com>
Sun, 21 Apr 2013 21:46:58 +0000 (17:46 -0400)
committerMathieu Gagné <mgagne@iweb.com>
Sun, 21 Apr 2013 21:46:58 +0000 (17:46 -0400)
Relationship was referring to Service[ceilometer] which does not exist.

manifests/keystone/auth.pp

index dfb2116c834304f2df8c682f0239304fd9413b4c..5593636e9b5555eba761c405d612261163164849 100644 (file)
@@ -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,