Issue #13294 has been updated by Daniel Pittman. Assignee deleted (Daniel Pittman)
---------------------------------------- Bug #13294: commit 5a60ca643 causes building puppet on Ruby 1.8.1 (RHEL 4) to fail https://projects.puppetlabs.com/issues/13294#change-92307 * Author: Ben Kevan * Status: Rejected * Priority: Normal * Assignee: * Category: testing * Target version: * 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 unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/puppet-bugs?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
