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/glesys/requests/compute/reboot.rb
Anton Lindström 27d4dc348a [glesys|compute] add reboot and compute test params
This commit adds the reboot feature as well as updated get() call and
compute test parameters to be able to run server tests
2012-06-12 14:54:07 +02:00

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