Issue #2099 has been reported by grumpus.
----------------------------------------
Bug #2099: chmod typo in 0.24.8 install.rb
http://projects.reductivelabs.com/issues/2099
Author: grumpus
Status: Unreviewed
Priority: Normal
Assigned to:
Category:
Target version:
Complexity: Unknown
Affected version: 0.24.8
Keywords:
The function do_libs sets the parent directory's mode to 644. This seems to be
the case in both the tarball and the gem (though not in the GIT repo):
<pre>
--- puppet-0.24.8.orig/install.rb 2009-03-22 23:38:26.000000000 -0400
+++ puppet-0.24.8/install.rb 2009-03-23 11:48:10.000000000 -0400
@@ -93,7 +93,7 @@
olf = File.join(InstallOptions.site_dir, lf.gsub(/#{strip}/, ''))
op = File.dirname(olf)
File.makedirs(op, true)
- File.chmod(0644, op)
+ File.chmod(0755, op)
File.install(lf, olf, 0755, true)
end
end
</pre>
----------------------------------------
You have received this notification because you have either subscribed to it,
or are involved in it.
To change your notification preferences, please click here:
http://reductivelabs.com/redmine/my/account
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Puppet Bugs" 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-bugs?hl=en
-~----------~----~----~----~------~----~------~--~---