vagrant-mcs 0.7.11 → 0.7.12

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: 0ef6cfa50cc8a2036001e9cb9f992ee83eb60736
4
- data.tar.gz: cad576f157795a7eddc32a9befaa64256200a9d9
3
+ metadata.gz: bf77ba3ca33fc8bc3fc44386a5dd97826ffe2f24
4
+ data.tar.gz: e437a2357c16b27b083c906dd74486c582e5db80
5
5
  SHA512:
6
- metadata.gz: a9cca082bafe4b5db66ece07a2ec1336b853d50f5d50e21f0789a091f8f2d0926fd20dde38baeb70035b8d6da922eca72121fc754e70e8728780a62bd1718d03
7
- data.tar.gz: af9bf7e891b2daf475df507a43e9cde18cb0db5f72be3cede4cb65b97db62968115b07713701d0d55249f164a68333ca34ffa015e663e7bb3db88f2269c9e9de
6
+ metadata.gz: d74f3855d4b056c20b9cf8649637cc0efa3e4de7c32a5466548ec7b8e57a8391668ac360c48e7b00e7cdfe19ce82acb77b86d9032a03b9ab67c1dcbd8a7b96b5
7
+ data.tar.gz: 455379ec94d5e83c024dd491877934a5da2cca205234023ab62bbf21c948358faf1edf73d946ba17d1adb517377471439e39190ccdc0b34e2cfe17afe79d3283
@@ -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"])
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"]
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.11'
3
+ VERSION = '0.7.12'
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.11
4
+ version: 0.7.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mitchell Hashimoto