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