summaryrefslogtreecommitdiffstats
path: root/install.rb
diff options
context:
space:
mode:
authorJames Turnbull <james@lovedthanlost.net>2008-08-29 12:17:04 +1000
committerJames Turnbull <james@lovedthanlost.net>2008-08-29 12:17:04 +1000
commit81cc9bf4892170e2e36a7b0b302a74f88c6825d1 (patch)
tree27380d3fe5126dfd9b763b85078dcfa981c5ab3c /install.rb
parent41dc1fac33cbb3938a5dc5f42f5b841a0a734c27 (diff)
downloadpuppet-81cc9bf4892170e2e36a7b0b302a74f88c6825d1.tar.gz
puppet-81cc9bf4892170e2e36a7b0b302a74f88c6825d1.tar.xz
puppet-81cc9bf4892170e2e36a7b0b302a74f88c6825d1.zip
Fixed #1533 - changed permissions for man directory
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 b5aba4215..73bcc6db5 100755
--- a/install.rb
+++ b/install.rb
@@ -102,7 +102,7 @@ def do_man(man, strip = 'man/')
omf = File.join(InstallOptions.man_dir, mf.gsub(/#{strip}/, ''))
om = File.dirname(omf)
File.makedirs(om, true)
- File.chmod(0644, om)
+ File.chmod(0755, om)
File.install(mf, omf, 0644, true)
gzip = %x{which gzip}
gzip.chomp!