diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2010-10-20 14:04:24 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2010-10-20 14:04:24 -0200 |
commit | f30637ead1f87c06bbf2ee66a55e8d709b09e18b (patch) | |
tree | d1e8f998ab491c00e4bbe7ea5ea8367955769e84 /manifests | |
parent | 392231ba78ba69df471ebf3209d8e89608677141 (diff) | |
download | puppet-git-f30637ead1f87c06bbf2ee66a55e8d709b09e18b.tar.gz puppet-git-f30637ead1f87c06bbf2ee66a55e8d709b09e18b.tar.bz2 |
Adding git-mass-update-server-info
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/gitosis.pp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/manifests/gitosis.pp b/manifests/gitosis.pp index ebe0c2a..853ca7e 100644 --- a/manifests/gitosis.pp +++ b/manifests/gitosis.pp @@ -64,4 +64,23 @@ class gitosis inherits git { backup => false, require => User["gitosis"], } + + # mass update script + file { "/usr/local/sbin/git-mass-update-server-info": + ensure => present, + owner => root, + group => root, + mode => 0755, + source => "puppet:///files/git/git-mass-update-server-info", + } + + # mass update hourly + cron { "/usr/local/sbin/git-mass-update-server-info": + command => "/usr/local/sbin/git-mass-update-server-info &> /dev/null", + user => root, + hour => "*/1", + minute => "20", + ensure => present, + require => File['/usr/local/sbin/git-mass-update-server-info'], + } } |