vagrant-1cloud 0.0.3 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ceafeab50a53fa0db78d9834f478d57354644dae
|
|
4
|
+
data.tar.gz: 1488e75f1439884e4e52db5e2cfc2c2efcf11769
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b9415af1a29353908d6468f1a56409e2f47824d4df15ad2585bb063f5ea888be9cdac31669a9a2c7583bf3ecfa2ed881221a384a3faeeb7c57f3fa892a3b70b1
|
|
7
|
+
data.tar.gz: cd2489a2bb6e22a206fb37885a2321bed7f61a473143b1f6fdb4e5478506e4e4b17f3a4a984d254eca2f4716ee85701648c5690eb0563a63a76ebede1ba99963
|
|
@@ -21,7 +21,7 @@ module VagrantPlugins
|
|
|
21
21
|
|
|
22
22
|
# wait for request to complete
|
|
23
23
|
env[:ui].info I18n.t('vagrant_1cloud.info.powering_off')
|
|
24
|
-
@client.wait_for_event(env, @machine.id, result['ID'])
|
|
24
|
+
@client.wait_for_event(env, @machine.id, result['body']['ID'])
|
|
25
25
|
|
|
26
26
|
# refresh droplet state with provider
|
|
27
27
|
Provider.droplet(@machine, :refresh => true)
|
|
@@ -21,7 +21,7 @@ module VagrantPlugins
|
|
|
21
21
|
|
|
22
22
|
# wait for request to complete
|
|
23
23
|
env[:ui].info I18n.t('vagrant_1cloud.info.powering_on')
|
|
24
|
-
@client.wait_for_event(env, @machine.id, result['ID'])
|
|
24
|
+
@client.wait_for_event(env, @machine.id, result['body']['ID'])
|
|
25
25
|
|
|
26
26
|
# refresh droplet state with provider
|
|
27
27
|
Provider.droplet(@machine, :refresh => true)
|
|
@@ -21,7 +21,7 @@ module VagrantPlugins
|
|
|
21
21
|
|
|
22
22
|
# wait for request to complete
|
|
23
23
|
env[:ui].info I18n.t('vagrant_1cloud.info.reloading')
|
|
24
|
-
@client.wait_for_event(env, @machine.id, result['ID'])
|
|
24
|
+
@client.wait_for_event(env, @machine.id, result['body']['ID'])
|
|
25
25
|
|
|
26
26
|
@app.call(env)
|
|
27
27
|
end
|
|
@@ -21,7 +21,7 @@ module VagrantPlugins
|
|
|
21
21
|
|
|
22
22
|
# wait for request to complete
|
|
23
23
|
env[:ui].info I18n.t('vagrant_1cloud.info.shutting_down')
|
|
24
|
-
@client.wait_for_event(env, @machine.id, result['ID'])
|
|
24
|
+
@client.wait_for_event(env, @machine.id, result['body']['ID'])
|
|
25
25
|
|
|
26
26
|
# refresh droplet state with provider
|
|
27
27
|
Provider.droplet(@machine, :refresh => true)
|