# File lib/puppet/ssl/certificate_authority/interface.rb, line 101 101: def fingerprint(ca) 102: (subjects == :all ? ca.list + ca.waiting?: subjects).each do |host| 103: if value = ca.fingerprint(host, @digest) 104: puts "#{host} #{value}" 105: else 106: Puppet.err "Could not find certificate for #{host}" 107: end 108: end 109: end