modules/postgresql/manifests/server/db.pp in freighthop-0.3.3 vs modules/postgresql/manifests/server/db.pp in freighthop-0.4.0
- old
+ new
@@ -5,15 +5,17 @@
$password,
$encoding = $postgresql::server::encoding,
$locale = $postgresql::server::locale,
$grant = 'ALL',
$tablespace = undef,
+ $template = 'template0',
$istemplate = false,
$owner = undef
) {
postgresql::server::database { $name:
encoding => $encoding,
tablespace => $tablespace,
+ template => $template,
locale => $locale,
istemplate => $istemplate,
owner => $owner,
}