Puppet Class: conf::config::cron

Inherits:
conf::install::cron
Inherited by:
conf::service::cron
Defined in:
manifests/config/cron.pp

Summary

A short summary of the purpose of this class

Overview

A description of what this class does

Examples:

include conf::config::cron


7
8
9
10
11
12
13
14
# File 'manifests/config/cron.pp', line 7

class conf::config::cron() inherits conf::install::cron {


  file { '/etc/cron.daily':
    require => Package['cron'],
  }

}