git.lirion.de

Of git, get, and gud

summaryrefslogtreecommitdiffstats
path: root/site/profile/manifests/puppetmaster.pp
diff options
context:
space:
mode:
authormail_redacted_for_web 2015-08-13 17:10:55 -0700
committermail_redacted_for_web 2015-08-13 17:10:55 -0700
commit6a78949ca8b24fd0e655b34cfc1406d967fe6e26 (patch)
treed1926c0f3a13777e569a04d90658499b9542257c /site/profile/manifests/puppetmaster.pp
parent70690333eedbb28b3f286912e6d9749b4a7e2618 (diff)
downloadcontrol-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.
Diffstat (limited to 'site/profile/manifests/puppetmaster.pp')
-rw-r--r--site/profile/manifests/puppetmaster.pp6
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',
}