diff options
author | James Turnbull <james@lovedthanlost.net> | 2009-03-01 17:55:17 +1100 |
---|---|---|
committer | James Turnbull <james@lovedthanlost.net> | 2009-03-01 17:55:17 +1100 |
commit | 75db918c37a9fef36c829105d1f8a99ff8bcf751 (patch) | |
tree | 97a3f42915a45e00f7f32da07ebd07f724ad6442 | |
parent | ba2e470ab5f6ee767c1b0d3016627e3838006e44 (diff) | |
download | facter-75db918c37a9fef36c829105d1f8a99ff8bcf751.tar.gz facter-75db918c37a9fef36c829105d1f8a99ff8bcf751.tar.xz facter-75db918c37a9fef36c829105d1f8a99ff8bcf751.zip |
Fixed lib install permissions
-rw-r--r-- | CHANGELOG | 2 | ||||
-rwxr-xr-x | install.rb | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,4 +1,6 @@ 1.6.x: + Fixed lib install permissions + Fixed #2040 - Facter should provide a macosx_productversion_major fact Fixed #2003 - Added is_virtual fact @@ -93,7 +93,7 @@ def do_libs(libs, strip = 'lib/') op = File.dirname(olf) File.makedirs(op, true) File.chmod(0755, op) - File.install(lf, olf, 0755, true) + File.install(lf, olf, 0644, true) end end |