# File lib/puppet/sslcertificates/ca.rb, line 147 147: def list_signed 148: return Dir.entries(Puppet[:signeddir]).find_all { |file| 149: file =~ /\.pem$/ 150: }.collect { |file| 151: file.sub(/\.pem$/, '') 152: } 153: end