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 +4 -4
- data/.bumpversion.cfg +1 -1
- data/CHANGELOG.md +7 -0
- data/README.md +2 -2
- data/lib/vSphere/action/get_ssh_info.rb +2 -1
- data/lib/vSphere/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ebe9f0396290f0413d0752d2d97266dd4b7bdda8
|
4
|
+
data.tar.gz: 815e05d6f5ba00a7b8ed805e11508656dc769d07
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3cec1f42099820c8e7c6e1c0c88d151aabbca18a69ca0d5849cbaa39b30540d621554ae8b2da601925fce8f4b838c67ea0e9534a389e9a9b2fe2b32d6ad6bec0
|
7
|
+
data.tar.gz: ecbd3ac119f4605d14e16bccab73d4831953283ef2c98c83a19f82b13134cfc5f05288a7219814f5a7ecdcb0736e3adfb21b1fa6232a437550d8ced4c1197d1f
|
data/.bumpversion.cfg
CHANGED
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.
|
22
|
+
**version: 1.12.1**
|
23
23
|
|
24
|
-
vagrant-vsphere (**version: 1.12.
|
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
|
data/lib/vSphere/version.rb
CHANGED
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.
|
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-
|
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.
|
217
|
+
rubygems_version: 2.4.7
|
218
218
|
signing_key:
|
219
219
|
specification_version: 4
|
220
220
|
summary: VMWare vSphere provider
|