diff options
author | Michael Scherer <misc@mageia.org> | 2012-03-19 18:01:04 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2012-03-19 18:01:04 +0000 |
commit | 71311cee9a48f0d5c2f472539c3cde4a88dc6deb (patch) | |
tree | 0b86da578951c9e3e3a10929bffb0c1dc97e963e | |
parent | 20aa87e3809cdadc2b9bb71d9cb618267b551b0b (diff) | |
download | puppet-71311cee9a48f0d5c2f472539c3cde4a88dc6deb.tar puppet-71311cee9a48f0d5c2f472539c3cde4a88dc6deb.tar.gz puppet-71311cee9a48f0d5c2f472539c3cde4a88dc6deb.tar.bz2 puppet-71311cee9a48f0d5c2f472539c3cde4a88dc6deb.tar.xz puppet-71311cee9a48f0d5c2f472539c3cde4a88dc6deb.zip |
quick commit to unbreak alamut puppet application
-rw-r--r-- | modules/phpbb/manifests/locale_db.pp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/phpbb/manifests/locale_db.pp b/modules/phpbb/manifests/locale_db.pp index 57ab360a..8111f18f 100644 --- a/modules/phpbb/manifests/locale_db.pp +++ b/modules/phpbb/manifests/locale_db.pp @@ -1,11 +1,11 @@ -define locale_db($tag = 'default', - $user = $phpbb::base::user) { +define phpbb::locale_db($tag = 'default', + $user = $phpbb::base::user) { postgresql::database { $name: description => "$lang db for phpbb forum", - user => $user, - tag => $tag, + 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 +# this should only be a issue in case of bootstrapping again # require => Postgresql::User[$user] } } |