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