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