summaryrefslogtreecommitdiff
path: root/manifests/cron.pp
blob: 1fae59e4e1ad866720c1a582f5c64ee8c18a44fe (plain)
1
2
3
4
5
6
7
8
class reprepro::cron inherits reprepro {
  cron { reprepro:
    command => "/usr/bin/reprepro --silent -b $basedir processincoming incoming",
    user => reprepro,
    minute => '*/5',
    require => [ Package['reprepro'], File["$basedir/conf/distributions"] ]
  }
}