# 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 #{model} #{request.key} at '#{path}'" 72: begin 73: File.unlink(path) 74: rescue => detail 75: raise Puppet::Error, "Could not remove #{request.key}: #{detail}" 76: end 77: end