summaryrefslogtreecommitdiffstats
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
parent41dc1fac33cbb3938a5dc5f42f5b841a0a734c27 (diff)
downloadpuppet-81cc9bf4892170e2e36a7b0b302a74f88c6825d1.tar.gz
puppet-81cc9bf4892170e2e36a7b0b302a74f88c6825d1.tar.xz
puppet-81cc9bf4892170e2e36a7b0b302a74f88c6825d1.zip
Fixed #1533 - changed permissions for man directory
-rw-r--r--CHANGELOG2
-rwxr-xr-xinstall.rb2
2 files changed, 3 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 8ce2c3a8d..1ba297e97 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,4 +1,6 @@
0.24.x
+ Fixed #1533 - changed permissions for man directory
+
Added daemontools and runit providers for service type
Added simple rake task for running unit tests
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!