Skip to content
Snippets Groups Projects
cron.pp 309 B
Newer Older
# Change the time that daily cron jobs run, primarily so that log periods will
# be close to calendar days.  Also remove anacron, since we don't use it on
# servers.
Adam Lewenberg's avatar
Adam Lewenberg committed

class base::cron {
  package { 'anacron': ensure => absent }
  file { '/etc/crontab':
    content => template('base/cron/crontab.erb'),
Adam Lewenberg's avatar
Adam Lewenberg committed
}