# File lib/puppet/ssl/certificate_authority.rb, line 62
62:     def autosign
63:         return unless auto = autosign?
64: 
65:         store = nil
66:         if auto != true
67:             store = autosign_store(auto)
68:         end
69: 
70:         Puppet::SSL::CertificateRequest.search("*").each do |csr|
71:             sign(csr.name) if auto == true or store.allowed?(csr.name, "127.1.1.1")
72:         end
73:     end