Puppet Class: mcollective::facts

Inherits:
mcollective::facts::cronjob
Defined in:
manifests/facts.pp

Overview

This looks weird, huh? Going away soon.



14
15
16
17
18
19
20
21
22
23
24
# File 'manifests/facts.pp', line 14

class mcollective::facts inherits mcollective::facts::cronjob {

  # Just in case they define the variable and include the class both
  if( ! $mcollective::facts::cronjob::run_every ) {
    # Override to enable and set minutes
    Cron['mcollective-facts'] { 
      ensure => present,
      minute => '*/10',
    }
  }
}