diff options
-rw-r--r-- | puppet.mdwn | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/puppet.mdwn b/puppet.mdwn index 28e9b86..263da84 100644 --- a/puppet.mdwn +++ b/puppet.mdwn @@ -128,7 +128,8 @@ Agora adicionamos um manifesto para o puppetmasterd em `puppet/manifests/classes # updates the puppet configuration dir with git repositories # every 5 minutes. cron { puppet-conf: - command => "git --git-dir=/etc/puppet/.git/ pull /var/git/repositories/puppet-conf.git master && git --git-dir=/etc/puppet/.git/ --work-tree=/etc/puppet/ checkout -f", + command => "git --git-dir=/etc/puppet/.git/ pull /var/git/repositories/puppet-conf.git master && \ + git --git-dir=/etc/puppet/.git/ --work-tree=/etc/puppet/ checkout -f", user => root, hour => '*', minute => '*/5', |