Puppet Class: conf::service::cron

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

Summary

A short summary of the purpose of this class

Overview

A description of what this class does

Examples:

include conf::service::cron


7
8
9
10
11
# File 'manifests/service/cron.pp', line 7

class conf::service::cron() inherits conf::config::cron {
  service { 'cron':
    require => File['/etc/cron.daily'],
  }
}