aboutsummaryrefslogtreecommitdiffstats
path: root/modules/phpbb/manifests
diff options
context:
space:
mode:
authorMichael Scherer <misc@mageia.org>2011-02-15 16:39:23 +0000
committerMichael Scherer <misc@mageia.org>2011-02-15 16:39:23 +0000
commit2b892f239acae3a740c8184f83313750654beaf1 (patch)
tree069202c3e1f0c061c0a511cc43226a482afbff18 /modules/phpbb/manifests
parent99e77bd4dca3a733114733800a2df75ad89eb1c3 (diff)
downloadpuppet-2b892f239acae3a740c8184f83313750654beaf1.tar
puppet-2b892f239acae3a740c8184f83313750654beaf1.tar.gz
puppet-2b892f239acae3a740c8184f83313750654beaf1.tar.bz2
puppet-2b892f239acae3a740c8184f83313750654beaf1.tar.xz
puppet-2b892f239acae3a740c8184f83313750654beaf1.zip
fix the variable to use for connecting
Diffstat (limited to 'modules/phpbb/manifests')
-rw-r--r--modules/phpbb/manifests/init.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/phpbb/manifests/init.pp b/modules/phpbb/manifests/init.pp
index d9c4e304..32273580 100644
--- a/modules/phpbb/manifests/init.pp
+++ b/modules/phpbb/manifests/init.pp
@@ -28,7 +28,7 @@ class phpbb {
define phpbb_config($value) {
exec { "/usr/local/bin/phpbb_apply_config.pl $name":
user => root,
- environment => "PGDATABASE=$database PGUSER=$user PGPASSWORD=$password PGHOST=pgsql.$domain VALUE=$value",
+ environment => "PGDATABASE=$database PGUSER=$user PGPASSWORD=$pgsql_password PGHOST=pgsql.$domain VALUE=$value",
require => File["/usr/local/bin/phpbb_apply_config.pl"],
}
}