summaryrefslogtreecommitdiff
path: root/manifests/cron/disabled.pp
blob: a8bc49963658e2d6d8f9729b7a0ccff57742f47b (plain)
1
2
3
4
5
6
7
8
9
10
11
class reprepro::cron::disabled inherits reprepro::cron {
  Cron['reprepro'] {
    ensure => absent,
  }

  Exec["reprepro -b $basedir createsymlinks", "reprepro -b $basedir export",
       "/usr/local/bin/reprepro-export-key", "/usr/local/bin/reprepro-export-key-update"] {
    onlyif => "/bin/false",
  }
}