diff options
author | Michael Scherer <misc@mageia.org> | 2012-03-15 15:56:36 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2012-03-15 15:56:36 +0000 |
commit | 86d6fae4a0b329ddc1ad19dc6f5c3f1d183707da (patch) | |
tree | 363191aee4ac5cb60c10e8e6dacba9460f3fbc8c /modules/phpbb | |
parent | 92ea9d4103ae86c9b4767ac7f09c0aa43882abcb (diff) | |
download | puppet-86d6fae4a0b329ddc1ad19dc6f5c3f1d183707da.tar puppet-86d6fae4a0b329ddc1ad19dc6f5c3f1d183707da.tar.gz puppet-86d6fae4a0b329ddc1ad19dc6f5c3f1d183707da.tar.bz2 puppet-86d6fae4a0b329ddc1ad19dc6f5c3f1d183707da.tar.xz puppet-86d6fae4a0b329ddc1ad19dc6f5c3f1d183707da.zip |
rename phpbb_config to config, since the namespace is already taking care of separation
Diffstat (limited to 'modules/phpbb')
-rw-r--r-- | modules/phpbb/manifests/init.pp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/phpbb/manifests/init.pp b/modules/phpbb/manifests/init.pp index 5b2115a6..fd85d904 100644 --- a/modules/phpbb/manifests/init.pp +++ b/modules/phpbb/manifests/init.pp @@ -1,5 +1,5 @@ class phpbb { - define phpbb_config($key, $value, $database) { + define config($key, $value, $database) { exec { "phpbb_apply $name": command => "/usr/local/bin/phpbb_apply_config.pl $key", user => root, @@ -88,13 +88,13 @@ class phpbb { user => $user, } - Phpbb::Phpbb_config { + Phpbb::Config { database => $database, } $ldap_password = extlookup("phpbb_ldap",'x') - phpbb_config { + phpbb::config { "ldap_user/$lang": key => "ldap_user", value => "cn=phpbb-$hostname,ou=System Accounts,$dc_suffix"; "ldap_server/$lang": |