diff options
-rw-r--r-- | modules/git/manifests/snapshot.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/git/manifests/snapshot.pp b/modules/git/manifests/snapshot.pp index 940b50f0..02fd0c10 100644 --- a/modules/git/manifests/snapshot.pp +++ b/modules/git/manifests/snapshot.pp @@ -17,7 +17,7 @@ define git::snapshot( $source, if ($refresh != '0') { cron { "update $name": # FIXME no -q ? - command => "cd $name && /usr/bin/git pull", + command => "cd $name && /usr/bin/git -q pull", user => $user, minute => $refresh } |