# File lib/puppet/indirector/ssl_file.rb, line 67
67:     def destroy(request)
68:         path = path(request.key)
69:         return false unless FileTest.exist?(path)
70: 
71:         Puppet.notice "Removing file %s %s at '%s'" % [model, request.key, path]
72:         begin
73:             File.unlink(path)
74:         rescue => detail
75:             raise Puppet::Error, "Could not remove %s: %s" % [request.key, detail]
76:         end
77:     end