Revision
313
Author
misc
Date
2010-11-19 01:54:58 +0100 (Fri, 19 Nov 2010)

Log Message

- fix the array concatenation ( puppet is not python nor ruby )

Modified Paths

Modified: puppet/modules/subversion/manifests/init.pp
===================================================================
--- puppet/modules/subversion/manifests/init.pp	2010-11-19 00:53:56 UTC (rev 312)
+++ puppet/modules/subversion/manifests/init.pp	2010-11-19 00:54:58 UTC (rev 313)
@@ -132,8 +132,7 @@
             }
         }
 
-        $pre_commit_check = ['no_commit_log','no_root']
-        $pre_commit_check += $syntax_check
+        $pre_commit_check = ['no_commit_log','no_root', $syntax_check]
 
         file { "$name/hooks/pre-commit.d/$pre_commit_check":
             ensure => "/usr/local/share/subversion/pre-commit.d/$pre_commit_check",