# File lib/puppet/sslcertificates/certificate.rb, line 21 21: def delete 22: [@certfile,@keyfile].each { |file| 23: File.unlink(file) if FileTest.exists?(file) 24: } 25: 26: if @hash 27: File.unlink(@hash) if FileTest.symlink?(@hash) 28: end 29: end