aboutsummaryrefslogtreecommitdiffstats
path: root/modules/phpbb/manifests/locale_db.pp
blob: 93046c4709390c0b051d6073b0fe1d6241c78db7 (plain)
1
2
3
4
5
6
7
8
9
10
11
define phpbb::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]
    }
}