vagrant-vmware-esxi 2.5.2 → 2.5.5

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: c7256168bd0cf7cb88793f16f81f74b5cb37c6ddabb86df89310b26d14949464
4
+ data.tar.gz: a0a73b5c17da28bcae6a40117f76f495c9067d25b9dc5a4f30e3593176223a0f
5
5
  SHA512:
6
- metadata.gz: da117ede08301a0952056b5cc7792a8f9f3c2cf6f690bb83349ab24705a8a0840ebeb24d59de4218abcfb00c9ad98cb984bbdae34f6401d96d905ff31da02c03
7
- data.tar.gz: 8a79b1027feedf617a694168a114c3cae6798aab0c95da92515bc7686395fc0794ed3ab332d09c255c805cd7794260f526195844fe0801efe6c1ee465308aa9d
6
+ metadata.gz: 447cee5ac8e94a97b288b75863686de0e823cd692c8871150cef3c5685bea80d18f21c92278ca49c93efda75df9d96dc2eda5b30e5438fdb148a6e2279fcc119
7
+ data.tar.gz: 839e24e533768323b505e3b303e415fd3a47b073a691f102a2fff1e7d619d91db5b0f6b2e841178effce471226eaffcf08c7fb9c7c88775c0d48c917b0211cca
data/Gemfile CHANGED
@@ -1,21 +1,7 @@
1
- #source 'https://rubygems.org'
2
- #
3
- #group :development do
4
- # #gem 'vagrant', git: 'https://github.com/hashicorp/vagrant.git', :branch => 'v2.2.3'
5
- # gem 'vagrant', git: 'https://github.com/hashicorp/vagrant.git'
6
- #end
7
- #
8
- #group :plugins do
9
- # #gemspec
10
- # gem "vagrant-vmware-esxi", path: "."
11
- #end
12
-
13
1
  source "https://rubygems.org"
14
2
 
15
3
  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'
4
+ gem "vagrant", git: "https://github.com/hashicorp/vagrant.git"
19
5
  end
20
6
 
21
7
  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.5 Fix vagrant package for Windows (mingw)
299
+ * 2.5.4 Add support for esxi 7.0.2 new os types.
300
+ * 2.5.3 Fix, Add hw_versions and GuestOS vmkernel7
291
301
  * 2.5.2 Fix, snapshot restore will execute regardless of current state.
292
302
  * 2.5.1 Fix, filter localhost from local IP detection for nfs sync.
293
303
  * 2.5.0 Add support to set guest vm to Autostart.
@@ -56,11 +56,15 @@ module VagrantPlugins
56
56
  " local_allow_overwrite='True' in Vagrantfile for force."
57
57
  end
58
58
 
59
+ is_mingw = Gem::Platform.local.os == "mingw32"
60
+
59
61
  # Find a tar/bsdtar
60
62
  if system 'tar --version >/dev/null 2>&1'
61
63
  tar_cmd = 'tar'
62
64
  elsif system 'bsdtar --version >/dev/null 2>&1'
63
65
  tar_cmd = 'bsdtar'
66
+ elsif is_mingw && system('tar --version > nul 2>&1')
67
+ tar_cmd = 'tar'
64
68
  else
65
69
  raise Errors::ESXiConfigError,
66
70
  message: 'unable to find tar in your path.'
@@ -120,7 +124,8 @@ module VagrantPlugins
120
124
  end
121
125
 
122
126
  env[:ui].info("tarring #{boxname}.box")
123
- unless system "cd #{tmpdir}/#{boxname} ; #{tar_cmd} cvf ../../#{boxname}.box *"
127
+ combinator_string = is_mingw ? "&&" : ";"
128
+ unless system "cd #{tmpdir}/#{boxname} #{combinator_string} #{tar_cmd} cvf ../../#{boxname}.box *"
124
129
  raise Errors::GeneralError,
125
130
  message: 'tar command failed.'
126
131
  end
@@ -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.2'
4
+ VERSION = '2.5.5'
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.2
4
+ version: 2.5.5
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: []