Puppet Class: puppet::common

Defined in:
manifests/common.pp

Overview



4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'manifests/common.pp', line 4

class puppet::common {
  include puppet::params

  # include concat::setup

  package { $puppet::params::package:
    ensure => installed,
    alias  => 'puppet_package'
  }

  if !defined(Concat[$puppet::params::conf_path]) {
    concat { $puppet::params::conf_path:
      owner => root,
      group => root,
      mode  => '0644',
    }

    concat::fragment { 'puppet_config_header':
      target  => $puppet::params::conf_path,
      content => template('puppet/puppet.conf.common.erb'),
      order   => '100',
    }
  }
}