[Puppet Users] writing custom facts

2011-06-14 Thread Sans
Dear all, I see that writing a custom-fact with single line of command is not that tough, like this: Facter.add(num_core) do setcode do %x{/bin/grep siblings /proc/cpuinfo | uniq | cut -d -f 2}.chomp end end But that's

Re: [Puppet Users] writing custom facts

2011-06-14 Thread Peter Bukowinski
One option is to save dd_code lines as a separate script, have puppet ensure its presence on each machine with a file statement, and then call it by explicit path in the Facter.add block. -- Peter (from phone) On Jun 14, 2011, at 7:39 AM, Sans r.santanu@gmail.com wrote: Dear all, I