aboutsummaryrefslogtreecommitdiffstats
path: root/modules/phpbb/manifests/locale_db.pp
blob: 8111f18ffcbf7d34ff380564bf0994427ed447b5 (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]
    }
}