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