vagrant-vmware-esxi 2.5.1 → 2.5.4

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: 40331b3198d6a85293719e3bd1c529ce7d01de80f151b2cdeed7aa771e0f127a
4
- data.tar.gz: a500020408fe69d6d81a057a390013cb8f3d897d062fc7a634ff243c018743b1
3
+ metadata.gz: 14496a972440d0c98a42a288447d61356a739ce42886a91183d261f768649d64
4
+ data.tar.gz: 93ca8f525b4b418c887642f39bd6d1d0b7d80bd62b8019abd4f092bd117ad6ff
5
5
  SHA512:
6
- metadata.gz: eacbdb2b3d689b16cfe45c36ee7fe42d475ea3a3e6f4f19de22cb034bc1922d8bd9585449ed537894e99a9f2b94c7a50a1326bbf30261f193016d6a964020d55
7
- data.tar.gz: 736975fe3243fd1f847048e9131e619a27788279b03eae7518c54dd4910f7506ad6c3d7549fdadab0ca3190e7ac3a13133365dbcad6b0bdf3db8b11832e03284
6
+ metadata.gz: 3ec2626d31c775be0cfa9cae03e15252887523adf17bd541a680774222fb90238bfce3c0fe4c3ba9108a3c67316e3dc6f662405ed15720508eafa688d4cea9a7
7
+ data.tar.gz: e1473f02056da20c4f550009ce37e08ed99462af0db2ad1ac4df782cd653843e3899bbd9fd1ca41ae117de53a6a573000a64008efe9fde8079c5216e22205323
data/Gemfile CHANGED
@@ -13,9 +13,7 @@
13
13
  source "https://rubygems.org"
14
14
 
15
15
  group :development do
16
- # Need to tag to 2.2.4, there is still a bug.
17
- # https://github.com/hashicorp/vagrant/pull/10945
18
- gem "vagrant", git: "https://github.com/hashicorp/vagrant.git", :tag => 'v2.2.4'
16
+ gem "vagrant", git: "https://github.com/hashicorp/vagrant.git"
19
17
  end
20
18
 
21
19
  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,18 @@ 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.4 Add support for esxi 7.0.2 new os types.
299
+ * 2.5.3 Fix, Add hw_versions and GuestOS vmkernel7
300
+ * 2.5.2 Fix, snapshot restore will execute regardless of current state.
291
301
  * 2.5.1 Fix, filter localhost from local IP detection for nfs sync.
292
302
  * 2.5.0 Add support to set guest vm to Autostart.
293
303
  * 2.4.5 Do not wait for `running` when resuming a VM that is not able to be resumed.
@@ -113,8 +113,11 @@ module VagrantPlugins
113
113
  def self.action_snapshot_restore
114
114
  Vagrant::Action::Builder.new.tap do |b|
115
115
  b.use SetESXiPassword
116
- b.use Halt
117
- b.use Call, WaitForState, :powered_off, 240 do |env1, b1|
116
+ b.use Call, ReadState do |env1, b1|
117
+ b1.use Halt unless env1[:machine_state] == 'powered_off'
118
+ b1.use ReadState
119
+ end
120
+ b.use Call, WaitForState, :powered_off, 30 do |env1, b1|
118
121
  if env1[:result] == 'True'
119
122
  b1.use SnapshotRestore
120
123
  b1.use ReadState
@@ -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,19
98
98
  ]
99
99
  @supported_guest_disk_types = [
100
100
  'thin',
@@ -141,6 +141,8 @@ module VagrantPlugins
141
141
  'darwin',
142
142
  'debian10-64',
143
143
  'debian10',
144
+ 'debian11-64',
145
+ 'debian11',
144
146
  'debian4-64',
145
147
  'debian4',
146
148
  'debian5-64',
@@ -233,6 +235,7 @@ module VagrantPlugins
233
235
  'vmkernel5',
234
236
  'vmkernel65',
235
237
  'vmkernel6',
238
+ 'vmkernel7',
236
239
  'vmkernel',
237
240
  'vmwarephoton-64',
238
241
  'win2000advserv',
@@ -241,6 +244,8 @@ module VagrantPlugins
241
244
  'win31',
242
245
  'win95',
243
246
  'win98',
247
+ 'windows2019srv-64',
248
+ 'windows2019srvNext-64',
244
249
  'windows7-64',
245
250
  'windows7',
246
251
  'windows7server-64',
@@ -1,7 +1,7 @@
1
1
  # VERSION
2
2
  module VagrantPlugins
3
3
  module ESXi
4
- VERSION = '2.5.1'
4
+ VERSION = '2.5.4'
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,11 +1,11 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-vmware-esxi
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.1
4
+ version: 2.5.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Senkerik
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
  date: 2018-08-02 00:00:00.000000000 Z
@@ -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
@@ -143,7 +143,7 @@ homepage: https://github.com/josenk/vagrant-vmware-esxi
143
143
  licenses:
144
144
  - GNU
145
145
  metadata: {}
146
- post_install_message:
146
+ post_install_message:
147
147
  rdoc_options: []
148
148
  require_paths:
149
149
  - lib
@@ -158,8 +158,8 @@ 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
162
- signing_key:
161
+ rubygems_version: 3.2.33
162
+ signing_key:
163
163
  specification_version: 4
164
164
  summary: Vagrant ESXi provider plugin
165
165
  test_files: []