--- puppet/modules/postgresql/manifests/init.pp 2011/06/17 10:59:50 1758 +++ puppet/modules/postgresql/manifests/init.pp 2011/06/17 11:05:25 1759 @@ -103,7 +103,7 @@ } # fetch the exported ressources that should have been exported # once the db was created, and trigger a notify to the object passwed as callback_notify - Postgresql::Database_callback <<| name == $name |>> + Postgresql::Database_callback <<| tag == $name |>> } define remote_database($description = "", @@ -121,7 +121,7 @@ require => Postgresql::User[$user] } - Postgresql::Database_callback <<| name == $name |>> + Postgresql::Database_callback <<| tag == $name |>> } define remote_user($password, @@ -170,6 +170,7 @@ # this is fetched by the manifest asking the database creation, once the db have been created # FIXME proper ordering ? @@postgresql::database_callback { $name: + tag => $name, callback_notify => $callback_notify, } }