aboutsummaryrefslogtreecommitdiffstats
path: root/modules/postgresql/manifests/remote_db_and_user.pp
diff options
context:
space:
mode:
authorMichael Scherer <misc@mageia.org>2012-03-17 16:53:49 +0000
committerMichael Scherer <misc@mageia.org>2012-03-17 16:53:49 +0000
commit4acd57a23e7bb3e641187e5d58b18ae01e78800e (patch)
tree7b12d476d7f6debd6070a79b7a8b10ae2a1e92b8 /modules/postgresql/manifests/remote_db_and_user.pp
parent77b85dcffc7e6ba92a619ee4e9bccfe015734f27 (diff)
downloadpuppet-4acd57a23e7bb3e641187e5d58b18ae01e78800e.tar
puppet-4acd57a23e7bb3e641187e5d58b18ae01e78800e.tar.gz
puppet-4acd57a23e7bb3e641187e5d58b18ae01e78800e.tar.bz2
puppet-4acd57a23e7bb3e641187e5d58b18ae01e78800e.tar.xz
puppet-4acd57a23e7bb3e641187e5d58b18ae01e78800e.zip
split the remaning class of postgresql module into different file, and clean them while on it
Diffstat (limited to 'modules/postgresql/manifests/remote_db_and_user.pp')
-rw-r--r--modules/postgresql/manifests/remote_db_and_user.pp17
1 files changed, 17 insertions, 0 deletions
diff --git a/modules/postgresql/manifests/remote_db_and_user.pp b/modules/postgresql/manifests/remote_db_and_user.pp
new file mode 100644
index 00000000..bb331304
--- /dev/null
+++ b/modules/postgresql/manifests/remote_db_and_user.pp
@@ -0,0 +1,17 @@
+define postgresql::remote_db_and_user($password,
+ $description = '',
+ $tag = 'default',
+ $callback_notify = '') {
+
+ @@postgresql::db_and_user { $name:
+ callback_notify => $callback_notify,
+ tag => $tag,
+ description => $description,
+ password => $password,
+ }
+
+ # fetch the exported ressources that should have been exported
+ # once the db was created, and trigger a notify to the object
+ # passed as callback_notify
+ Postgresql::Database_callback <<| tag == $name |>>
+}