Method: Fog::Compute::Linode::Real#linode_reboot

Defined in:
lib/fog/linode/requests/compute/linode_reboot.rb

#linode_reboot(linode_id, options = {}) ⇒ Object

Issues a shutdown, and then a boot job for a given linode

Parameters

  • linode_id<~Integer>: id of linode to reboot

  • options<~Hash>:

    • configId<~Boolean>: id of config to boot server with

Returns

  • response<~Excon::Response>:

    • body<~Array>:

TODO: docs

[View source]

17
18
19
20
21
22
23
# File 'lib/fog/linode/requests/compute/linode_reboot.rb', line 17

def linode_reboot(linode_id, options={})
  request(
    :expects  => 200,
    :method   => 'GET',
    :query    => { :api_action => 'linode.reboot', :linodeId => linode_id }.merge!(options)
  )
end