Issue #13294 has been updated by Daniel Pittman. Status changed from Needs Decision to Rejected
Ruby 1.8.1 isn't supported with Puppet. You need to upgrade to at least Ruby 1.8.5, and we strongly recommend 1.8.7. ---------------------------------------- Bug #13294: commit 5a60ca643 causes building puppet on Ruby 1.8.1 (RHEL 4) to fail https://projects.puppetlabs.com/issues/13294#change-63052 Author: Ben Kevan Status: Rejected Priority: Normal Assignee: Daniel Pittman Category: testing Target version: 1.6.x Keywords: Branch: Affected Facter version: 1.6.6 The above commit caused puppet for fail to build complaining that is_windows wasn't initialized. Adding the following resolved the issue: --- facter-1.6.6/lib/facter/util/config.rb 2012-02-16 15:15:55.000000000 -0800 +++ facter-1.6.6/lib/facter/util/config.rb.new 2012-03-21 09:55:55.828722209 -0700 @@ -1,4 +1,5 @@ require 'rbconfig' +require 'facter/util/monkey_patches' # A module to return config related data # -- 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://projects.puppetlabs.com/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.
