Puppet Class: hiera::params
- Inherited by:
-
hiera
- Defined in:
- manifests/params.pp
Overview
Class: hiera::params
This class handles OS-specific configuration of the hiera module. It looks for variables in top scope (probably from an ENC such as Dashboard). If the variable doesn’t exist in top scope, it falls back to a hard coded default value.
Authors:
Mike Arnold <mike@razorsedge.org>
Copyright:
Copyright © 2013 Mike Arnold, unless otherwise noted.
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
# File 'manifests/params.pp', line 16
class hiera::params {
$confdir = $::settings::confdir
if str2bool($::is_pe) {
$hiera_yaml = '/etc/puppetlabs/puppet/hiera.yaml'
$datadir = '/etc/puppetlabs/puppet/hieradata'
$owner = 'pe-puppet'
$group = 'pe-puppet'
$cmdpath = ['/opt/puppet/bin', '/usr/bin', '/usr/local/bin']
if $::pe_version and versioncmp($::pe_version, '3.7.0') >= 0 {
$provider = 'pe_puppetserver_gem'
$master_service = 'pe-puppetserver'
} else {
$provider = 'pe_gem'
$master_service = 'pe-httpd'
}
} else {
if $::puppetversion and versioncmp($::puppetversion, '4.0.0') >= 0 {
# Configure for AIO packaging.
if $::pe_server_version {
$master_service = 'pe-puppetserver'
$provider = 'puppetserver_gem'
} else {
# It would probably be better to assume this is puppetserver, but that
# would be a backwards-incompatible change.
$master_service = 'puppetmaster'
$provider = 'puppet_gem'
}
$cmdpath = ['/opt/puppetlabs/puppet/bin', '/usr/bin', '/usr/local/bin']
$datadir = '/etc/puppetlabs/code/environments/%{::environment}/hieradata'
} else {
$master_service = 'puppetmaster'
$provider = 'gem'
$cmdpath = ['/usr/bin', '/usr/local/bin']
$datadir = "${confdir}/hieradata"
}
if $::pe_server_version {
$owner = 'pe-puppet'
$group = 'pe-puppet'
} else {
$owner = 'puppet'
$group = 'puppet'
}
$hiera_yaml = "${confdir}/hiera.yaml"
}
}
|