summaryrefslogtreecommitdiff
path: root/manifests/cron.pp
blob: 5f9f2273eb67e8b5facd99db08b4d9cafd457fd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class puppet::cron inherits puppet {
  case $operatingsystem {
    debian: { include puppet::cron::debian }
    openbsd: { include puppet::cron::openbsd }
    default: {
      case $kernel {
        linux: { include puppet::cron::linux }
        default: { include puppet::cron::base }
      }
    }
  }
}