From: Silvio Rhatto Date: Wed, 23 Feb 2011 21:41:58 +0000 (-0300) Subject: Fixing puppet.conf permission and ownership X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=ee8f796221afb03aff8f8f68807a7df8338d0458;p=puppet-puppet.git Fixing puppet.conf permission and ownership --- diff --git a/manifests/puppetd.pp b/manifests/puppetd.pp index 8265b77..0fcba46 100644 --- a/manifests/puppetd.pp +++ b/manifests/puppetd.pp @@ -42,8 +42,8 @@ class puppetd inherits puppet { file { "/etc/puppet/puppet.conf": ensure => file, owner => puppet, - group => puppet, - mode => 0644, + group => root, + mode => 0640, content => template("puppet/puppet-node.conf.erb"), } }