---
I noticed this while converting the Fedora package from manually
installing the files to using the install.rb script.

I don't know of any reason for the lib files to be installed
with execute perms.  They don't have a shebang, so running them
directly would require calling them via ruby /path/to/file.rb.  Both
Debian and Fedora install the files without execute perms.  I've not
seen any problems or bug reports in Fedora about this.

 install.rb |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

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
 
-- 
1.6.2.rc2

-- 
Todd        OpenPGP -> KeyID: 0xBEAF0CE3 | URL: www.pobox.com/~tmz/pgp
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
You pretend to work, and we'll pretend to pay you.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Puppet Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/puppet-dev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to