On Aug 22, 2:08 am, Brian Troutwine <br...@troutwine.us> wrote:
> Hello, all.
>
> I am unable to get the utilize the output of a custom fact in a template
> while, simultaniously, succeeding at doing so with another custom fact. I
> receive no errors and am utterly at a loss. The failing custom fact that
> looks like this:
>
> # cat /var/lib/puppet/lib/facter/memorysize_mb.rb
> # As seen 
> in:http://groups.google.com/group/puppet-users/browse_thread/thread/f1c0...
>
> require 'facter'
> Facter.add("memorysize_mb") do
>   confine :kernel => :Linux
>   ram = 0
>   # Steal linux's meminfo
>   File.open( "/proc/meminfo" , 'r' ) do |f|
>     f.grep( /^MemTotal:/ ) { |mem|
>       ram = mem.split( / +/ )[1].to_i / 1024
>     }
>   end
>   setcode do
>     ram
>   end
> end
>
> The following works great:
>
> # facter --puppet memorysize_mb
> 17495


Is that on the client for which the template is screwy?  If not then
the first thing to do is to test there.  Possibly the fact is not
getting synced to the client, or perhaps it fails there.


> Just like I expect; just like as advertised 
> here:http://www.puppetlabs.com/blog/facter-part-2-testing-and-deployment/and
> herehttp://projects.puppetlabs.com/projects/1/wiki/Adding_Factsand 
> herehttp://www.krzywanski.net/archives/666. Everything looks to be going
> smooth. Indeed, I already have another custom fact that I'm using to great
> success in templates already. Looks like this:
>
> # cat /var/lib/puppet/lib/facter/stack_depth.rb
>
> require 'facter'
>
> Facter.add('stack_depth') do
>   setcode do
>     %x{bash -c 'ulimit -s'}.chomp.to_i
>   end
> end
>
> In my template when I do
>
> maintenance_work_mem = <%= memorysize_mb.to_i * 0.15 %>MB
> max_stack_depth = <%= stack_depth.to_i - 1000 %>kB
>
> the rendered configuration is
>
> maintenance_work_mem = MB
> max_stack_depth = 7192kB


It makes me nervous to see executable code inside the block passed to
Facter.add() but outside the setcode therein.  Evidently it works in
some contexts, but I don't see what you're gaining by doing that
here.  All except the 'confine' should be inside the setcode block.
(In fact, I suspect the confine will fail to have the desired effect
otherwise.)

Also, try 'notify'ing the fact value in the scope wherein you evaluate
the template.  For example,

class example {
  notify { "maintenance_work_mem_debug":
    message => "maintenance_work_mem is '${::maintenance_work_mem}'
for kernel '${::kernel}'"
  }

  file {"/etc/my_templated_file":
    content => template("my_template.erb")
  }
}


John

-- 
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.

Reply via email to