diff options
author | mail_redacted_for_web | 2015-08-13 17:10:55 -0700 |
---|---|---|
committer | mail_redacted_for_web | 2015-08-13 17:10:55 -0700 |
commit | 6a78949ca8b24fd0e655b34cfc1406d967fe6e26 (patch) | |
tree | d1926c0f3a13777e569a04d90658499b9542257c | |
parent | 70690333eedbb28b3f286912e6d9749b4a7e2618 (diff) | |
download | control-repo-template-6a78949ca8b24fd0e655b34cfc1406d967fe6e26.tar.bz2 |
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.
-rw-r--r-- | site/profile/manifests/puppetmaster.pp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/site/profile/manifests/puppetmaster.pp b/site/profile/manifests/puppetmaster.pp index b22500c..2747d40 100644 --- a/site/profile/manifests/puppetmaster.pp +++ b/site/profile/manifests/puppetmaster.pp @@ -2,11 +2,11 @@ class profile::puppetmaster { class { 'hiera': hierarchy => [ - "\"nodes/%{::trusted.certname}\"", - "common", + 'nodes/%{::trusted.certname}', + 'common', ], hiera_yaml => '/etc/puppetlabs/code/hiera.yaml', - datadir => "\"/etc/puppetlabs/code/environments/%{environment}/hieradata\"", + datadir => '/etc/puppetlabs/code/environments/%{environment}/hieradata\', owner => 'root', group => 'root', } |