Puppet Class: conf::setup::cron
- Inherits:
- conf::service::cron
- Defined in:
- manifests/setup/cron.pp
Summary
A short summary of the purpose of this classOverview
A description of what this class does
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# File 'manifests/setup/cron.pp', line 7
class conf::setup::cron() inherits conf::service::cron {
Package['cron'] {
ensure => latest, }
File['/etc/cron.daily'] {
ensure => directory,
}
Service['cron'] {
ensure => running,
enable => true,
}
}
|