summaryrefslogtreecommitdiffstats
path: root/install.rb
diff options
context:
space:
mode:
authorJames Turnbull <james@lovedthanlost.net>2009-09-18 06:41:15 +1000
committerJames Turnbull <james@lovedthanlost.net>2009-09-18 06:41:15 +1000
commitba269f2ee083408ecb3fe92620bf7b44cac33ab4 (patch)
tree8babd09568d3083197b7cbc0da87ac4d73f6b206 /install.rb
parent361c50210172ffe484550a19db3a8d10d86edc09 (diff)
downloadpuppet-ba269f2ee083408ecb3fe92620bf7b44cac33ab4.tar.gz
puppet-ba269f2ee083408ecb3fe92620bf7b44cac33ab4.tar.xz
puppet-ba269f2ee083408ecb3fe92620bf7b44cac33ab4.zip
Fixed #2651 - Corrected install permissions on man page directories.
Diffstat (limited to 'install.rb')
-rwxr-xr-xinstall.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/install.rb b/install.rb
index 44cf88ad6..49ca8b18c 100755
--- a/install.rb
+++ b/install.rb
@@ -116,7 +116,7 @@ def do_man(man, strip = 'man/')
om = File.dirname(omf)
if $haveftools
File.makedirs(om, true)
- File.chmod(0644, om)
+ File.chmod(0755, om)
File.install(mf, omf, 0644, true)
else
FileUtils.makedirs(om, {:mode => 0755, :verbose => true})