summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Turnbull <james@lovedthanlost.net>2009-03-01 17:55:17 +1100
committerJames Turnbull <james@lovedthanlost.net>2009-03-01 17:55:17 +1100
commit75db918c37a9fef36c829105d1f8a99ff8bcf751 (patch)
tree97a3f42915a45e00f7f32da07ebd07f724ad6442
parentba2e470ab5f6ee767c1b0d3016627e3838006e44 (diff)
downloadfacter-75db918c37a9fef36c829105d1f8a99ff8bcf751.tar.gz
facter-75db918c37a9fef36c829105d1f8a99ff8bcf751.tar.xz
facter-75db918c37a9fef36c829105d1f8a99ff8bcf751.zip
Fixed lib install permissions
-rw-r--r--CHANGELOG2
-rwxr-xr-xinstall.rb2
2 files changed, 3 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG
index e5a5d6c..da7478d 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -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
diff --git a/install.rb b/install.rb
index d38aede..3be8952 100755
--- a/install.rb
+++ b/install.rb
@@ -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