I have run the code by hand and it works just fine. Here it is: ################# require 'facter'
def addFact(name , cmd) matches = cmd.scan(/\$\{\w+\}/) if ! matches.empty? for i in 0...matches.length match = matches[i] match = match[2..-2] value = Facter[match].value() if value == nil value = '' end cmd = cmd.gsub(/\$\{#{Regexp.escape(match)}\}/, value) end end Facter.add(name) do setcode do `#{cmd}`.chomp end end end # # List of facts to define, # # Can have references to previous facts by using the ${var} syntax # facts = { 'ec2_region' => 'cat /opt/aws/info/region', 'ec2_instance_id' => 'cat /opt/aws/info/instance-id', 'ec2_url' => 'echo "https://ec2.${ec2_region}.amazonaws.com"', 'ec2_zone' => "ec2-metadata -z | awk {'print $NF'}" } if ! Facter['ec2_ami_id'] puts "Not loading aws_facts" else keys = facts.keys for key in 0...keys.length fact = keys[key] addFact(fact, facts[fact]) end end ############## Its a simple script that sets up some facts about aws ec2 instances. Hope this helps. Nathaniel On Aug 9, 3:04 pm, Craig White <craig.wh...@ttiltd.com> wrote: > On Aug 8, 2011, at 3:52 PM, Nathaniel Cook wrote: > > > > > > > > > > > I am having an issue with puppet hanging. My system is pretty simple I > > have several modules but only one that loads some extra facts. I > > configure the client to have pluginsync=true in puppet.conf. On the > > first run it creates and signs the certificate and the copies the one > > ruby script for the facts and logs: > > > info: Loading downloaded plugin /var/lib/puppet/lib/facter/facts.rb > > > Then it hangs. Logs and the master and the client never say anything > > else. The puppet process uses up about 50% cpu and never recovers. If > > I kill puppet and restart it, it still hangs. > > > Any ideas as to why this would be happening? > > > Could it be related to using autosign and it being the same run that > > it signs the cert? > > > Thanks for your help, > > Nathaniel Cook > > > I am using puppet 2.6.9 on CentOS 5 > > ---- > sounds like there's a problem with the code in your 'fact' > > Suggest that you make sure it can run in irb first before you implement. > > Otherwise, you probably want to show us what the code looks like > > Craig -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com. To unsubscribe from this group, send email to puppet-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.