vagrant-vmware-esxi 2.5.2 → 2.5.3

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
  SHA256:
3
- metadata.gz: 76151ba498e2ccdeed28546c14080ad07d5dddcc1a38c7d1440395a5e048e26c
4
- data.tar.gz: 71784b81f37391e04d87820100ad2812575a69ed58ee0416e941908ef6309768
3
+ metadata.gz: 40843e2fa14d0943afe5d7558f522f5838273d9da3dc6d48a872a99b8b04321f
4
+ data.tar.gz: a98c843764067f2e5f53c3b9e31accd87573844c06ae98e01b29293d92183b25
5
5
  SHA512:
6
- metadata.gz: da117ede08301a0952056b5cc7792a8f9f3c2cf6f690bb83349ab24705a8a0840ebeb24d59de4218abcfb00c9ad98cb984bbdae34f6401d96d905ff31da02c03
7
- data.tar.gz: 8a79b1027feedf617a694168a114c3cae6798aab0c95da92515bc7686395fc0794ed3ab332d09c255c805cd7794260f526195844fe0801efe6c1ee465308aa9d
6
+ metadata.gz: a4e0feaa23ce650a034e100538c8935020337f1b977a597b33840e110704b9ba921906897a566bdb657b6e37150da0b067229bb47f3556c5691a1c9ae4e9d9d7
7
+ data.tar.gz: 348910b7e00ef358d11a9a34d5d788ca2ca3ed6c6bb1b2a0583257e507c333c0de41ab1171fc6d00aa0464d86e5d544fe3fa719789bc7200bbbc009ffa9afb26
data/Gemfile CHANGED
@@ -15,7 +15,8 @@ source "https://rubygems.org"
15
15
  group :development do
16
16
  # Need to tag to 2.2.4, there is still a bug.
17
17
  # https://github.com/hashicorp/vagrant/pull/10945
18
- gem "vagrant", git: "https://github.com/hashicorp/vagrant.git", :tag => 'v2.2.4'
18
+ #gem "vagrant", git: "https://github.com/hashicorp/vagrant.git", :tag => 'v2.2.4'
19
+ gem "vagrant", git: "https://github.com/hashicorp/vagrant.git", :tag => 'v2.2.10'
19
20
  end
20
21
 
21
22
  group :plugins do
data/README.md CHANGED
@@ -219,7 +219,7 @@ Vagrant.configure('2') do |config|
219
219
  #esxi.guest_guestos = 'centos-64'
220
220
 
221
221
  # OPTIONAL. guest_virtualhw_version
222
- # ESXi 6.5 supports these versions. 4,7,8,9,10,11,12,13 & 14.
222
+ # ESXi 6.7 supports these versions. 4,7,8,9,10,11,12,13 & 14.
223
223
  #esxi.guest_virtualhw_version = '9'
224
224
 
225
225
  # OPTIONAL. Guest Autostart
@@ -286,8 +286,16 @@ Known issues with vmware_esxi
286
286
  * Setting the hostname on some boxes can cause 'vagrant up' to fail if the network configuration wasn't previously cleaned up. Avoid buggy boxes, fix the box networking and repackage, or do not set the hostname via Vagrant.
287
287
 
288
288
 
289
+ Donations
290
+ ---------
291
+ I work very hard to produce a stable, well documented product. I appreciate any payments or donations for my efforts.
292
+ * Bitcoin: 12WCUyop3XGiaux8REvmDJ6kWFGoLnM4j9
293
+ * paypal: josenk at jintegrate.co
294
+
295
+
289
296
  Version History
290
297
  ---------------
298
+ * 2.5.3 Fix, Add hw_versions and GuestOS vmkernel7
291
299
  * 2.5.2 Fix, snapshot restore will execute regardless of current state.
292
300
  * 2.5.1 Fix, filter localhost from local IP detection for nfs sync.
293
301
  * 2.5.0 Add support to set guest vm to Autostart.
@@ -94,7 +94,7 @@ module VagrantPlugins
94
94
  @debug = 'False'
95
95
  @saved_ipaddress = nil
96
96
  @supported_guest_virtualhw_versions = [
97
- 4,7,8,9,10,11,12,13,14
97
+ 4,7,8,9,10,11,12,13,14,15,16,17,18
98
98
  ]
99
99
  @supported_guest_disk_types = [
100
100
  'thin',
@@ -233,6 +233,7 @@ module VagrantPlugins
233
233
  'vmkernel5',
234
234
  'vmkernel65',
235
235
  'vmkernel6',
236
+ 'vmkernel7',
236
237
  'vmkernel',
237
238
  'vmwarephoton-64',
238
239
  'win2000advserv',
@@ -1,7 +1,7 @@
1
1
  # VERSION
2
2
  module VagrantPlugins
3
3
  module ESXi
4
- VERSION = '2.5.2'
4
+ VERSION = '2.5.3'
5
5
  $vagrant_vmware_esxi_version = VERSION
6
6
  end
7
7
  end
@@ -17,7 +17,7 @@ Gem::Specification.new do |s|
17
17
  s.test_files = s.files.grep(%r{^(test|spec|features)/})
18
18
  s.require_path = 'lib'
19
19
 
20
- s.add_runtime_dependency 'i18n', '~> 1.0'
20
+ s.add_runtime_dependency 'i18n', '~> 1.8'
21
21
  s.add_runtime_dependency 'log4r', '~> 1.1'
22
22
  s.add_runtime_dependency "iniparse", '> 1.0'
23
23
  s.add_runtime_dependency 'nokogiri', '~> 1.6'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-vmware-esxi
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.2
4
+ version: 2.5.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Senkerik
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '1.0'
19
+ version: '1.8'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '1.0'
26
+ version: '1.8'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: log4r
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -158,7 +158,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
158
158
  - !ruby/object:Gem::Version
159
159
  version: '0'
160
160
  requirements: []
161
- rubygems_version: 3.0.3
161
+ rubygems_version: 3.1.6
162
162
  signing_key:
163
163
  specification_version: 4
164
164
  summary: Vagrant ESXi provider plugin