# File lib/puppet/ssl/certificate_authority/interface.rb, line 86
86:     def print(ca)
87:         (subjects == :all ? ca.list : subjects).each do |host|
88:             if value = ca.print(host)
89:                 puts value
90:             else
91:                 Puppet.err "Could not find certificate for %s" % host
92:             end
93:         end
94:     end