1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

[vcloud_director] fix vapp#suspend

This commit is contained in:
Nick Osborn 2013-10-01 18:38:51 +01:00
parent a83f6744b6
commit 31f74ce8df

View file

@ -72,9 +72,9 @@ module Fog
end
# Suspend all VMs in the vApp.
def shutdown
def suspend
requires :id
response = service.post_shutdown_vapp(id)
response = service.post_suspend_vapp(id)
service.process_task(response.body)
end