diff options
Diffstat (limited to 'modules/phpbb/manifests/locale_db.pp')
-rw-r--r-- | modules/phpbb/manifests/locale_db.pp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/phpbb/manifests/locale_db.pp b/modules/phpbb/manifests/locale_db.pp new file mode 100644 index 00000000..57ab360a --- /dev/null +++ b/modules/phpbb/manifests/locale_db.pp @@ -0,0 +1,11 @@ +define locale_db($tag = 'default', + $user = $phpbb::base::user) { + postgresql::database { $name: + description => "$lang db for phpbb forum", + user => $user, + tag => $tag, +# this break due to the way it is remotely declared +# this should only be a issue in case of bootstrapping again +# require => Postgresql::User[$user] + } +} |