diff options
author | Michael Scherer <misc@mageia.org> | 2011-02-15 16:21:13 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2011-02-15 16:21:13 +0000 |
commit | 99e77bd4dca3a733114733800a2df75ad89eb1c3 (patch) | |
tree | 2e391891cce989ebb5ea291af2f35e478a9d9b2e /modules/phpbb/files | |
parent | ccaadaa236de86460f2483408fdb0c3b9335f3ad (diff) | |
download | puppet-99e77bd4dca3a733114733800a2df75ad89eb1c3.tar puppet-99e77bd4dca3a733114733800a2df75ad89eb1c3.tar.gz puppet-99e77bd4dca3a733114733800a2df75ad89eb1c3.tar.bz2 puppet-99e77bd4dca3a733114733800a2df75ad89eb1c3.tar.xz puppet-99e77bd4dca3a733114733800a2df75ad89eb1c3.zip |
fix previous fix, O is not a digit, 0 is
Diffstat (limited to 'modules/phpbb/files')
-rw-r--r-- | modules/phpbb/files/phpbb_apply_config.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/phpbb/files/phpbb_apply_config.pl b/modules/phpbb/files/phpbb_apply_config.pl index 6b550013..f790cf30 100644 --- a/modules/phpbb/files/phpbb_apply_config.pl +++ b/modules/phpbb/files/phpbb_apply_config.pl @@ -4,7 +4,7 @@ use warnings; use Env qw(VALUE); use DBI; -my $key = $ARGV[O]; +my $key = $ARGV[0]; # DBI will use default value coming from env # see puppet manifests |