vagrant-vsphere 1.12.0 → 1.12.1

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: 33c983107b8df23738c00d4aea0222fb30658c44
4
- data.tar.gz: 25a77163f89f2ae0955a90bdc5cf56448c2a1f97
3
+ metadata.gz: ebe9f0396290f0413d0752d2d97266dd4b7bdda8
4
+ data.tar.gz: 815e05d6f5ba00a7b8ed805e11508656dc769d07
5
5
  SHA512:
6
- metadata.gz: 131a0aec11980da13868f349ea9d909c6215a5f5039465a3a79b964fb28e512497b84a981d225d7292e8f42d7bb541d34108543c484a9835e0d651d240a40e1e
7
- data.tar.gz: 3cb13e789acc3b185a9b6563736128d29df961bcdce984dffea92a83883ec5477ad3d6b6450598c353a5e3f564b1678dd812347be5c2e90a95f6a189898a6a7c
6
+ metadata.gz: 3cec1f42099820c8e7c6e1c0c88d151aabbca18a69ca0d5849cbaa39b30540d621554ae8b2da601925fce8f4b838c67ea0e9534a389e9a9b2fe2b32d6ad6bec0
7
+ data.tar.gz: ecbd3ac119f4605d14e16bccab73d4831953283ef2c98c83a19f82b13134cfc5f05288a7219814f5a7ecdcb0736e3adfb21b1fa6232a437550d8ced4c1197d1f
data/.bumpversion.cfg CHANGED
@@ -1,5 +1,5 @@
1
1
  [bumpversion]
2
- current_version = 1.12.0
2
+ current_version = 1.12.1
3
3
  tag = true
4
4
  commit = true
5
5
 
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.12.1 (2017-03-07)](https://github.com/nsidc/vagrant-vsphere/releases/tag/v1.12.1)
2
+
3
+ - If no valid adapters can be found on a host when using the `real_nic_ip`
4
+ option, fall back to the value of `vm.guest.ipAddress`. This resolves an
5
+ issue where the network changes made by Docker Swarm prevent vagrant-vsphere
6
+ from acquiring the VM's IP address.
7
+
1
8
  ## [1.12.0 (2017-03-07)](https://github.com/nsidc/vagrant-vsphere/releases/tag/v1.12.0)
2
9
 
3
10
  - Make `wait_for_sysprep` functionality configurable (see README.md for
data/README.md CHANGED
@@ -19,9 +19,9 @@ This provider is built on top of the
19
19
  * libxml2, libxml2-dev, libxslt, libxslt-dev
20
20
 
21
21
  ## Current Version
22
- **version: 1.12.0**
22
+ **version: 1.12.1**
23
23
 
24
- vagrant-vsphere (**version: 1.12.0**) is available from
24
+ vagrant-vsphere (**version: 1.12.1**) is available from
25
25
  [RubyGems.org](https://rubygems.org/gems/vagrant-vsphere)
26
26
 
27
27
  ## Installation
@@ -24,7 +24,8 @@ module VagrantPlugins
24
24
  interfaces = vm.guest.net.select { |g| g.deviceConfigId > 0 }
25
25
  ip_addresses = interfaces.map { |i| i.ipConfig.ipAddress.select { |a| a.state == 'preferred' } }.flatten
26
26
 
27
- return nil if ip_addresses.empty?
27
+ return (vm.guest.ipAddress || nil) if ip_addresses.empty?
28
+
28
29
  fail Errors::VSphereError.new, :'multiple_interface_with_real_nic_ip_set' if ip_addresses.size > 1
29
30
  ip_addresses.first.ipAddress
30
31
  end
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module VSphere
3
- VERSION = '1.12.0'
3
+ VERSION = '1.12.1'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-vsphere
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.12.0
4
+ version: 1.12.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Grauch
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-03-07 00:00:00.000000000 Z
11
+ date: 2017-04-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri
@@ -214,7 +214,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
214
214
  version: '0'
215
215
  requirements: []
216
216
  rubyforge_project:
217
- rubygems_version: 2.4.5.1
217
+ rubygems_version: 2.4.7
218
218
  signing_key:
219
219
  specification_version: 4
220
220
  summary: VMWare vSphere provider