diff options
author | Michael Scherer <misc@mageia.org> | 2011-04-19 12:56:02 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2011-04-19 12:56:02 +0000 |
commit | d7493d45c668484b02d9787af65995587795e116 (patch) | |
tree | 9ca596fa334de7a2d346a59c4e4ace6eb2acc44b | |
parent | daa02cab8c229a15bc9295dd8f744a7dbaca33e5 (diff) | |
download | puppet-d7493d45c668484b02d9787af65995587795e116.tar puppet-d7493d45c668484b02d9787af65995587795e116.tar.gz puppet-d7493d45c668484b02d9787af65995587795e116.tar.bz2 puppet-d7493d45c668484b02d9787af65995587795e116.tar.xz puppet-d7493d45c668484b02d9787af65995587795e116.zip |
set default language to english, as that's the only thing in
our git for the moment
-rw-r--r-- | modules/phpbb/manifests/init.pp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/phpbb/manifests/init.pp b/modules/phpbb/manifests/init.pp index 8f4ef4d9..65f00444 100644 --- a/modules/phpbb/manifests/init.pp +++ b/modules/phpbb/manifests/init.pp @@ -210,10 +210,13 @@ class phpbb { value => "forums.$domain", } + # this depend on the language pck being installed, + # and so far, we only have english one in git phpbb_config { "default_lang/$lang": database => $database, key => "default_lang", - value => $lang, + # value => $lang, + value => "en", } |