summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2011-02-23 18:41:58 -0300
committerSilvio Rhatto <rhatto@riseup.net>2011-02-23 18:41:58 -0300
commitee8f796221afb03aff8f8f68807a7df8338d0458 (patch)
treeeb779f8aae99b72fcca5e221e08112464fcea740
parent66fa770b4d16c0ecfbb3413ec4b75af513d184b6 (diff)
downloadpuppet-puppet-ee8f796221afb03aff8f8f68807a7df8338d0458.tar.gz
puppet-puppet-ee8f796221afb03aff8f8f68807a7df8338d0458.tar.bz2
Fixing puppet.conf permission and ownership
-rw-r--r--manifests/puppetd.pp4
1 files changed, 2 insertions, 2 deletions
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"),
}
}