diff options
author | mail_redacted_for_web | 2015-11-17 14:10:45 -0800 |
---|---|---|
committer | mail_redacted_for_web | 2015-11-17 14:10:45 -0800 |
commit | 7e40513c531d98015101367baf5d480d7ea6d2e3 (patch) | |
tree | 228174d2c764719b64adb0d8b600213f97b532ee /site/profile | |
parent | e5be3e2ddd2201a26a848fbc412b6705ff9154f9 (diff) | |
download | control-repo-template-7e40513c531d98015101367baf5d480d7ea6d2e3.tar.bz2 |
Change owner/group to pe-puppet for hiera module
When the owner / group was root this meant that enabling
hiera-eyaml wouldn't work properly as the keys couldn't
be read by puppetserver.
Changing to pe-puppet should resolve the issue.
Diffstat (limited to 'site/profile')
-rw-r--r-- | site/profile/manifests/puppetmaster.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/site/profile/manifests/puppetmaster.pp b/site/profile/manifests/puppetmaster.pp index 1a199cd..0954807 100644 --- a/site/profile/manifests/puppetmaster.pp +++ b/site/profile/manifests/puppetmaster.pp @@ -11,8 +11,8 @@ class profile::puppetmaster ( ], hiera_yaml => '/etc/puppetlabs/code/hiera.yaml', datadir => '/etc/puppetlabs/code/environments/%{environment}/hieradata', - owner => 'root', - group => 'root', + owner => 'pe-puppet', + group => 'pe-puppet', notify => Service['pe-puppetserver'], } |