aboutsummaryrefslogtreecommitdiffstats
path: root/modules/postgresql/manifests/remote_db_and_user.pp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/postgresql/manifests/remote_db_and_user.pp')
-rw-r--r--modules/postgresql/manifests/remote_db_and_user.pp18
1 files changed, 18 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..07e3ea23
--- /dev/null
+++ b/modules/postgresql/manifests/remote_db_and_user.pp
@@ -0,0 +1,18 @@
+# FIXME: In puppet >3.0 word 'tag' is reserved, so it have to be renamed
+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 resources 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 |>>
+}