# File lib/puppet/ssl/certificate_authority.rb, line 90 90: def autosign_store(file) 91: auth = Puppet::Network::AuthStore.new 92: File.readlines(file).each do |line| 93: next if line =~ /^\s*#/ 94: next if line =~ /^\s*$/ 95: auth.allow(line.chomp) 96: end 97: 98: auth 99: end