# File lib/puppet/ssl/certificate_authority.rb, line 94
 94:   def crl
 95:     unless defined?(@crl)
 96:       unless @crl = Puppet::SSL::CertificateRevocationList.find(Puppet::SSL::CA_NAME)
 97:         @crl = Puppet::SSL::CertificateRevocationList.new(Puppet::SSL::CA_NAME)
 98:         @crl.generate(host.certificate.content, host.key.content)
 99:         @crl.save
100:       end
101:     end
102:     @crl
103:   end