diff options
author | Michael Scherer <misc@mageia.org> | 2011-02-15 16:39:25 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2011-02-15 16:39:25 +0000 |
commit | d6c3e05f62ccb0a613ee83229174120c5385c94d (patch) | |
tree | 1fd8db6c8609c36be662e89fc2643e2dfdbd9aad /modules/phpbb/manifests | |
parent | 2b892f239acae3a740c8184f83313750654beaf1 (diff) | |
download | puppet-d6c3e05f62ccb0a613ee83229174120c5385c94d.tar puppet-d6c3e05f62ccb0a613ee83229174120c5385c94d.tar.gz puppet-d6c3e05f62ccb0a613ee83229174120c5385c94d.tar.bz2 puppet-d6c3e05f62ccb0a613ee83229174120c5385c94d.tar.xz puppet-d6c3e05f62ccb0a613ee83229174120c5385c94d.zip |
environnement must be in a array
Diffstat (limited to 'modules/phpbb/manifests')
-rw-r--r-- | modules/phpbb/manifests/init.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/phpbb/manifests/init.pp b/modules/phpbb/manifests/init.pp index 32273580..855e33b4 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=$pgsql_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"], } } |