# File lib/puppet/ssl/certificate_authority/interface.rb, line 90
90:         def print(ca)
91:           (subjects == :all ? ca.list  : subjects).each do |host|
92:             if value = ca.print(host)
93:               puts value
94:             else
95:               Puppet.err "Could not find certificate for #{host}"
96:             end
97:           end
98:         end