From 5dc9c3aa06840d9280d8a41ad57bedf7572d62e1 Mon Sep 17 00:00:00 2001 From: Michael Scherer Date: Sat, 17 Mar 2012 16:53:41 +0000 Subject: split database from main postgresql file --- modules/postgresql/manifests/database.pp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 modules/postgresql/manifests/database.pp (limited to 'modules/postgresql/manifests/database.pp') diff --git a/modules/postgresql/manifests/database.pp b/modules/postgresql/manifests/database.pp new file mode 100644 index 00000000..82670b5e --- /dev/null +++ b/modules/postgresql/manifests/database.pp @@ -0,0 +1,19 @@ +# TODO convert it to a regular type ( so we can later change user and so on ) +define postgresql::database($description = '', + $user = 'postgres', + $callback_notify = '') { + + exec { "createdb -O $user -U postgres $name '$description'": + user => 'root', + unless => "psql -A -t -U postgres -l | grep '^$name|'", + require => Service['postgresql'], + } + + # 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, + } +} -- cgit v1.2.1