From bff48c65b259d47a3c1bc4e58e13bc721592a4ca Mon Sep 17 00:00:00 2001 From: Michael Scherer Date: Wed, 24 Nov 2010 12:45:31 +0000 Subject: do not use default empty array, as puppet evaluate this as "true" and therefore create the post-commit scripts with invalid values --- modules/subversion/manifests/init.pp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'modules/subversion') 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 -- cgit v1.2.1