summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Turnbull <james@lovedthanlost.net>2007-12-30 20:57:57 +1100
committerJames Turnbull <james@lovedthanlost.net>2007-12-30 20:57:57 +1100
commit594a5a3522a653ac0d2ddd6217c66c056fad1b60 (patch)
treeeea84b54c676079c18bc84c66e883f597b5b4f22
parent1deb7fd487dca1046beb933dca2cccadf44fa6f5 (diff)
downloadpuppet-594a5a3522a653ac0d2ddd6217c66c056fad1b60.tar.gz
puppet-594a5a3522a653ac0d2ddd6217c66c056fad1b60.tar.xz
puppet-594a5a3522a653ac0d2ddd6217c66c056fad1b60.zip
Fixed issue where permissions are incorrectly set on Debian for /var/puppet/run directory
-rw-r--r--lib/puppet/defaults.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/puppet/defaults.rb b/lib/puppet/defaults.rb
index a767d2952..e9bf29f5f 100644
--- a/lib/puppet/defaults.rb
+++ b/lib/puppet/defaults.rb
@@ -66,7 +66,11 @@ module Puppet
:owner => "root",
:desc => "Where SSL certificates are kept."
},
- :rundir => { :default => rundir,
+ :rundir => {
+ :default => rundir,
+ :mode => 0750,
+ :owner => "$user",
+ :group => "$group",
:desc => "Where Puppet PID files are kept."
},
:genconfig => [false,