diff options
author | Michael Scherer <misc@mageia.org> | 2011-02-02 19:38:53 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2011-02-02 19:38:53 +0000 |
commit | 3adb81adc4822d0ce4c604814c2f447e2a8d3192 (patch) | |
tree | 7b413bbaf56b12c8f618b72e1079ad885a2aa41c /modules/git | |
parent | d6c98b72a84a924588b27f922b48e775f64b4cae (diff) | |
download | puppet-3adb81adc4822d0ce4c604814c2f447e2a8d3192.tar puppet-3adb81adc4822d0ce4c604814c2f447e2a8d3192.tar.gz puppet-3adb81adc4822d0ce4c604814c2f447e2a8d3192.tar.bz2 puppet-3adb81adc4822d0ce4c604814c2f447e2a8d3192.tar.xz puppet-3adb81adc4822d0ce4c604814c2f447e2a8d3192.zip |
fix the shebang of post-receive
Diffstat (limited to 'modules/git')
-rw-r--r-- | modules/git/manifests/init.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/git/manifests/init.pp b/modules/git/manifests/init.pp index f9714e4e..1ff21ed3 100644 --- a/modules/git/manifests/init.pp +++ b/modules/git/manifests/init.pp @@ -96,7 +96,7 @@ class git { owner => root, group => root, mode => 755, - content => "#!bin/bash\nfalse", + content => "#!/bin/bash\nfalse", require => Exec["git svn $name"] } } |