mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
41f09986f4
support for legacy v1.0 style auth and v2.0 keystone auth.
24 lines
437 B
Ruby
24 lines
437 B
Ruby
module Fog
|
|
module Compute
|
|
class OpenStack
|
|
class Real
|
|
|
|
def reboot_server(server_id, type = 'SOFT')
|
|
body = { 'reboot' => { 'type' => type }}
|
|
server_action(server_id, body)
|
|
end
|
|
|
|
end
|
|
|
|
class Mock
|
|
|
|
def reboot_server(server_id, type = 'SOFT')
|
|
response = Excon::Response.new
|
|
response.status = 202
|
|
response
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|