summaryrefslogtreecommitdiff
path: root/manifests/cron.pp
blob: 9bce6a73b8d1f68b59af81c84015e4a32fa0ce89 (plain)
1
2
3
4
5
6
7
8
9
# manifests/cron.pp

class puppet::cron inherits puppet {
    case $kernel {
        linux: { include puppet::cron::linux }
        openbsd: { include puppet::cron::openbsd }
        default: { include puppet::cron::base }
    }
}