vagrant-mcs 0.7.10 → 0.7.11

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2310d7250b06119d132ec4536640ddd5a5416466
4
- data.tar.gz: f1367b30bf6d017a736ee039a900d254d6e7136f
3
+ metadata.gz: 0ef6cfa50cc8a2036001e9cb9f992ee83eb60736
4
+ data.tar.gz: cad576f157795a7eddc32a9befaa64256200a9d9
5
5
  SHA512:
6
- metadata.gz: e5016747204bc3d83c93f2cb6614206a701f18322f88e40117ecc88e4147f62ced01a5c72c27f0af59e93e0a3298ba14a1b314149f632b9015b11f14b2db4eae
7
- data.tar.gz: 4cbfbe75a7b5617c778107226bbb4f4695bf1e10576444018d9f57abb81340e78d92e9b776052054d336bd46a76edbf69560bf87b84b8a951b180f2d1e70631e
6
+ metadata.gz: a9cca082bafe4b5db66ece07a2ec1336b853d50f5d50e21f0789a091f8f2d0926fd20dde38baeb70035b8d6da922eca72121fc754e70e8728780a62bd1718d03
7
+ data.tar.gz: af9bf7e891b2daf475df507a43e9cde18cb0db5f72be3cede4cb65b97db62968115b07713701d0d55249f164a68333ca34ffa015e663e7bb3db88f2269c9e9de
@@ -25,7 +25,7 @@ module VagrantPlugins
25
25
  #puts machine.id
26
26
  server = mcs.describe_instances(machine.id)
27
27
  #server = mcs.servers.get(machine.id)
28
- if server.nil? || [:"shutting-down", :terminated].include?(server["status"].to_sym)
28
+ if server.nil? || [:"shutting-down", :terminated].include?((server["status"]).to_sym)
29
29
  # The machine can't be found
30
30
  @logger.info("Machine not found or terminated, assuming it got destroyed.")
31
31
  machine.id = nil
@@ -33,7 +33,7 @@ module VagrantPlugins
33
33
  end
34
34
 
35
35
  # Return the state
36
- return server["status"].to_sym
36
+ return (server["status"]).to_sym
37
37
  end
38
38
  end
39
39
  end
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module MCS
3
- VERSION = '0.7.10'
3
+ VERSION = '0.7.11'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-mcs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.10
4
+ version: 0.7.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mitchell Hashimoto