summaryrefslogtreecommitdiff
path: root/manifests/disabled.pp
blob: 9c822fcc3294b8324d23fc2f9f708b1894b2827d (plain)
1
2
3
4
5
6
7
8
9
class reprepro::disabled(
  $basedir   = '/srv/reprepro'
) {
  cron { reprepro:
    command => "/usr/bin/reprepro --silent -b ${reprepro::basedir} processincoming incoming",
    user    => reprepro,
    ensure  => absent,
  }
}