mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
27d4dc348a
This commit adds the reboot feature as well as updated get() call and compute test parameters to be able to run server tests
14 lines
174 B
Ruby
14 lines
174 B
Ruby
module Fog
|
|
module Compute
|
|
class Glesys
|
|
class Real
|
|
|
|
def reboot(param)
|
|
request("/server/reboot", param)
|
|
end
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
|