# File lib/puppet/ssl/certificate_authority.rb, line 82
82:   def autosign_store(file)
83:     auth = Puppet::Network::AuthStore.new
84:     File.readlines(file).each do |line|
85:       next if line =~ /^\s*#/
86:       next if line =~ /^\s*$/
87:       auth.allow(line.chomp)
88:     end
89: 
90:     auth
91:   end