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