diff options
author | Michael Scherer <misc@mageia.org> | 2010-11-24 12:45:31 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2010-11-24 12:45:31 +0000 |
commit | bff48c65b259d47a3c1bc4e58e13bc721592a4ca (patch) | |
tree | 0ba944471339d3345e04f70a13b372fe45d49e4d /modules/subversion/manifests | |
parent | 9ea3a5b939bcfbda0640d893bb7e2d18a73f6370 (diff) | |
download | puppet-bff48c65b259d47a3c1bc4e58e13bc721592a4ca.tar puppet-bff48c65b259d47a3c1bc4e58e13bc721592a4ca.tar.gz puppet-bff48c65b259d47a3c1bc4e58e13bc721592a4ca.tar.bz2 puppet-bff48c65b259d47a3c1bc4e58e13bc721592a4ca.tar.xz puppet-bff48c65b259d47a3c1bc4e58e13bc721592a4ca.zip |
do not use default empty array, as puppet evaluate this as "true" and
therefore create the post-commit scripts with invalid values
Diffstat (limited to 'modules/subversion/manifests')
-rw-r--r-- | modules/subversion/manifests/init.pp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/subversion/manifests/init.pp b/modules/subversion/manifests/init.pp index 638fa1ec..7b9da2d0 100644 --- a/modules/subversion/manifests/init.pp +++ b/modules/subversion/manifests/init.pp @@ -114,9 +114,9 @@ class subversion { define repository ($group = "svn", $public = true, - $commit_mail = [], - $syntax_check = [], - $extract_dir = []) { + $commit_mail = '', + $syntax_check = '', + $extract_dir = '') { # check permissions # http://svnbook.red-bean.com/nightly/fr/svn.serverconfig.multimethod.html # $name ==> directory of the repo |