diff options
author | Michael Scherer <misc@mageia.org> | 2011-07-20 12:09:13 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2011-07-20 12:09:13 +0000 |
commit | 434ce802b59f3f47342c94cf3b822a111c9934b2 (patch) | |
tree | 03e8c544d151a462a167f72211afc7e066183dec /modules/git | |
parent | e43f9475183916cad6fb21fcf124a822ffe836f7 (diff) | |
download | puppet-434ce802b59f3f47342c94cf3b822a111c9934b2.tar puppet-434ce802b59f3f47342c94cf3b822a111c9934b2.tar.gz puppet-434ce802b59f3f47342c94cf3b822a111c9934b2.tar.bz2 puppet-434ce802b59f3f47342c94cf3b822a111c9934b2.tar.xz puppet-434ce802b59f3f47342c94cf3b822a111c9934b2.zip |
fix the update cron
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 ee9985b3..06e876e9 100644 --- a/modules/git/manifests/init.pp +++ b/modules/git/manifests/init.pp @@ -114,7 +114,7 @@ class git { } cron { "update $name": - command => "cd $name ; /usr/bin/git pull -q" , + command => "cd $name ; /usr/bin/git fetch -q", minute => $refresh } } |