> Is there a way to access the agent's certname as a variable?
> 

Volcane suggested on IRC:

FACTER_certname=$(cat /etc/puppet/certname) puppet agent ... --certname=$(cat 
/etc/puppet/certname)

which works fine. I turned it into a Ruby fact:

require 'facter'
require 'puppet'

Facter.add :certname do
setcode do
Puppet[:certname]
end
end


Thanks for the help, R.I. 

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