# File lib/chef/provider/ifconfig.rb, line 91
      def action_delete
        # check to see if load_current_resource found the interface
        if @current_resource.device
          command = "ifconfig #{@new_resource.device} down"
  
          run_command(
            :command => command
          )
          @new_resource.updated_by_last_action(true)
        else
          Chef::Log.debug("Ifconfig #{@current_resource} does not exist")
        end
      end