# File lib/fog/linode/requests/compute/linode_reboot.rb, line 28
        def linode_reboot(linode_id, options={})
          response = Excon::Response.new
          response.status = 200
          response.body = {
            "ERRORARRAY" => [],
            "ACTION"     => "linode.reboot",
            "DATA"       => { "JobID" => rand(1000..9999) }
          }
          response
        end