control-repo/site/profile/manifests/puppetmaster.pp
Nick Walker 6a78949ca8 Fix some incorrect quoting in the hiera class
I thought I needed to double quote items that had interpolated
variables but it turns out I don't need to which is good
because I effectively can't due to .to_yaml not doing what I
wanted it to do.
2015-08-13 17:10:55 -07:00

15 lines
325 B
Puppet

class profile::puppetmaster {
class { 'hiera':
hierarchy => [
'nodes/%{::trusted.certname}',
'common',
],
hiera_yaml => '/etc/puppetlabs/code/hiera.yaml',
datadir => '/etc/puppetlabs/code/environments/%{environment}/hieradata\',
owner => 'root',
group => 'root',
}
}