blob: 8cb464444e8e84337ab48da8518280d12201942f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
class puppet::cron inherits puppet {
case $operatingsystem {
debian,ubuntu: { include puppet::cron::linux }
openbsd: { include puppet::cron::openbsd }
freebsd: { include puppet::cron::freebsd }
default: {
case $kernel {
linux: { include puppet::cron::linux }
default: { include puppet::cron::base }
}
}
}
}
|