Displaying 1 result from an estimated 1 matches for "xen_kernel".
Did you mean:
get_kernel
2007 Aug 18
0
Out of memory error while running puppet
...blem is but I am posting this so hopefully people
don''t scratch their heads when this happens.
I need to be able to configure different things depending whether I''m
running on a system that has a Xen kernel or not. I added a fact in
/var/lib/puppet/facts/
Facter.add("xen_kernel") do
server= `uname -r`
if !server.index(''xen'').nil? then
setcode "yes"
else
setcode "no"
end
end
You already may see what the problem is
# /usr/sbin/puppetd -v...