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