1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/rackspace/requests/compute/reboot_server.rb

31 lines
648 B
Ruby
Raw Normal View History

module Fog
module Compute
class Rackspace
class Real
2009-10-17 17:24:34 -04:00
# Reboot an existing server
#
# ==== Parameters
# * server_id<~Integer> - Id of server to reboot
# * type<~String> - Type of reboot, must be in ['HARD', 'SOFT']
#
2010-02-06 17:51:19 -05:00
def reboot_server(server_id, type = 'SOFT')
2010-11-29 13:36:10 -05:00
body = { 'reboot' => { 'type' => type }}
server_action(server_id, body)
2009-10-17 17:24:34 -04:00
end
end
class Mock
2009-10-17 17:24:34 -04:00
2010-05-31 11:37:26 -04:00
def reboot_server(server_id, type = 'SOFT')
2010-11-29 13:36:10 -05:00
response = Excon::Response.new
response.status = 202
response
2009-10-17 17:24:34 -04:00
end
end
end
end
end