Newer
Older
# Change the time that daily cron jobs run, primarily so that log periods will
# be close to calendar days.
# Make sure anacron isn't installed. Otherwise, our cron jobs won't run
# because they will assume anacron is handling cron jobs. On Red Hat, anacron
# is installed by default even though it isn't used.
package { 'anacron': ensure => absent }
file { '/etc/crontab':
source => "puppet:///modules/base/cron/etc/crontab.${::operatingsystem}";
}