vagrant-vmware-esxi 2.4.4 → 2.4.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
- SHA1:
3
- metadata.gz: 8839b6a6c7237f6f1f6b16372942cc64b3e7249e
4
- data.tar.gz: 6ed9d6316f258988ae6bb41e456d8549af844be9
2
+ SHA256:
3
+ metadata.gz: b80dcf0cc3caa8e246414af38314d56ce1d65ace893eba8a4ca20611afb25e2b
4
+ data.tar.gz: 146dc97e235a67195648198e00b71cd54fa77d5a8860ab7035b5fdb6f236d5f0
5
5
  SHA512:
6
- metadata.gz: 466b185a31719cb17729bfcd6b54f924a5fcc5262ca3ae1c72a7f7d8650e5c342638fa3a12d700cd9c0769420fb90497949955b931ab7c1b26b24f6d20be1ee4
7
- data.tar.gz: afcbe1de25cb5e1d3c4e73b55e2aa99ae9cb0f63a485b1ed9751e26d3cfdfaf8f9eea9a7e72d0cc0fd146bcf0aea982ba87d990e5b93964902e4be8d4400b7ce
6
+ metadata.gz: 6bc121399632dd6d5c5764f3261bcb2880072497720b97974234884f862123fcd5d8fd567f69fb1dcc8027f3af3bfe643b1d9acb552081d628f9311ecabf8176
7
+ data.tar.gz: 876ece37a1da0dfdd2109311decd1eae654680991cc879a18dbd991f9a34708f22d8f5bd3f5df64e230bfddcdd657503c5cb4ed675ce5626a13267e793b0f839
@@ -3,7 +3,8 @@ VMware ESXi 6.5 guestOS types
3
3
 
4
4
  Based on my research and some trial & error, I made this list of guestOS types that are compatible with ESXi 6.5. I started with some api documenation from vmware that listed guestOS types.
5
5
 
6
- >http://pubs.vmware.com/vsphere-6-5/index.jsp#com.vmware.wssdk.apiref.doc/vim.vm.GuestOsDescriptor.GuestOsIdentifier.html
6
+ >http://pubs.vmware.com/vsphere-65/topic/com.vmware.wssdk.apiref.doc/vim.vm.GuestOsDescriptor.GuestOsIdentifier.html
7
+ >https://code.vmware.com/apis/358/vsphere#/doc/vim.vm.GuestOsDescriptor.GuestOsIdentifier.html
7
8
 
8
9
  But they didn't quite work when put directly in the vmx file... I noticed none of my existing vmx files had the word "Guest" in guestOS line. I also noticed in the list that the 64 bit entries were inconsistent. (Some have _64, others are -64, and others are just 64.) I removed the word Guest and set all the 64 bit OS's to be standard "-64". The results seems to work for various OS's I installed, but I certainly didn't try all of these. So here is my list... Please report any errors.
9
10
 
data/Gemfile CHANGED
@@ -1,9 +1,24 @@
1
- source 'https://rubygems.org'
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
+ source "https://rubygems.org"
2
14
 
3
15
  group :development do
4
- gem 'vagrant', git: 'https://github.com/hashicorp/vagrant.git'
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'
5
19
  end
6
20
 
7
21
  group :plugins do
8
- gemspec
22
+ gem "vagrant-vmware-esxi", path: "."
9
23
  end
24
+
data/Gemfile.path ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem 'vagrant', path: '../vagrant' # checked out 'cca36d9'
data/README.md CHANGED
@@ -11,7 +11,7 @@ Refer to the WIKI for documentation, examples and other information...
11
11
 
12
12
  Vagrant vs Terraform.
13
13
  ---------------------
14
- If you are using vagrant as a deployment tool (infa as code), you may want to consider a better tool. Terraform. Vagrant is better for development environments, while Terraform is better at managing infrastructure. Please give my terraform plugin a try and give me some feedback. What you're trying to do, what's missing, what works, what doesn't work, etc...
14
+ If you are using vagrant as a deployment tool (infra as code), you may want to consider a better tool: Terraform. Vagrant is better for development environments, while Terraform is better at managing infrastructure. Please give my Terraform plugin a try and give me some feedback. What you're trying to do, what's missing, what works, what doesn't work, etc...
15
15
  >https://www.vagrantup.com/intro/vs/terraform.html
16
16
 
17
17
  >https://github.com/josenk/terraform-provider-esxi
@@ -21,7 +21,7 @@ If you are using vagrant as a deployment tool (infa as code), you may want to co
21
21
 
22
22
  Features and Compatibility
23
23
  --------------------------
24
- * Clone from VMs. (see wiki) Clone a VM on the esxi host instead of transferring a box stored on your local pc.
24
+ * Clone from VMs. (see wiki) Clone a VM on the ESXi host instead of transferring a box stored on your local pc.
25
25
  * Any of the vmware Box formats should be compatible.
26
26
  * vmware_desktop, vmware_fusion, vmware_workstation...
27
27
  * To be fully functional, you must have open-vm-tools or vmware tools installed.
@@ -34,7 +34,7 @@ Features and Compatibility
34
34
  * suspend, resume, snapshots.
35
35
  * rsync & NFS using built-in Vagrant synced folders.
36
36
  * Provision using built-in Vagrant provisioner.
37
- * package your vm's into boxes.
37
+ * package your VMs into boxes.
38
38
  * Create additional network interfaces, set nic type, MAC addresses, static IPs.
39
39
  * Use Vagrants private_network, public_network options to set a static IP addresses on additional network interfaces. (not the primary interface)
40
40
  * Disks can be provisioned using thin, thick or eagerzeroedthick.
@@ -48,7 +48,7 @@ Requirements
48
48
  2. This plugin requires ovftool from VMware. Download from VMware website. NOTE: ovftool installer for windows doesn't put ovftool.exe in your path. You can manually set your path, or install ovftool in the \HashiCorp\Vagrant\bin directory.
49
49
  >https://www.vmware.com/support/developer/ovf/
50
50
  3. You MUST enable ssh access on your ESXi hypervisor.
51
- * Google 'How to enable ssh access on esxi'
51
+ * Google 'How to enable ssh access on ESXi'
52
52
  4. The boxes must have open-vm-tools or vmware-tools installed to properly transition to the 'running' state.
53
53
  5. In general, you should know how to use vagrant, esxi and some networking...
54
54
  6. You will most likely need a DHCP server on your primary network if you are deploying public boxes.
@@ -233,11 +233,11 @@ Vagrant.configure('2') do |config|
233
233
 
234
234
  # DANGEROUS! Allow Overwrite
235
235
  # If unspecified, the default is to produce an error if overwriting
236
- # vm's and packages.
236
+ # VMs and packages.
237
237
  #esxi.local_allow_overwrite = 'True'
238
238
 
239
239
  # Advanced Users.
240
- # If set to 'True', all WARNINGS will produce a FAILURE and vagrant will stop.
240
+ # If set to 'True', all WARNINGS will produce a FAILURE and Vagrant will stop.
241
241
  #esxi.local_failonwarning = 'True'
242
242
 
243
243
  # Plugin debug output.
@@ -265,7 +265,7 @@ Basic usage
265
265
  * `vagrant snapshot pop`
266
266
  * `vagrant halt`
267
267
  * `vagrant provision`
268
- * `vagrant address` # esxi provided plugin. Output IP address of guest.
268
+ * `vagrant address` # ESXi provided plugin. Output IP address of guest.
269
269
 
270
270
 
271
271
 
@@ -273,9 +273,9 @@ Known issues with vmware_esxi
273
273
  -----------------------------
274
274
  * The boxes must have open-vm-tools or vmware-tools installed to properly transition to the 'running' state.
275
275
  * Invalid settings (bad IP address, netmask, MAC address, guest_custom_vmx_settings) could cause 'vagrant up' to fail. Review vSphere console and/or ESXi logs to help debug why it failed.
276
- * If you break an install ([CTRL]-C), the cleanup task doesn't always destroy the VM that has been partially built. To resolve this, use the local_allow_overwrite = 'True' Vagrantfile option if you want to force a rebuild, or you can delete the vm using the VSphere client.
277
- * ovftool installer for windows doesn't put ovftool.exe in your path. You can manually set your path, or install ovftool in the \HashiCorp\Vagrant\bin directory.
278
- * Vagrant NFS synced folders cannot not be 100% reliable on multi-homed clients (your vagrant pc/laptop/host). There is no 100% reliable way to know which IP is the correct, most reliable, most desirable, way to reach the vm guest.
276
+ * If you break an install ([CTRL]-C), the cleanup task doesn't always destroy the VM that has been partially built. To resolve this, use the local_allow_overwrite = 'True' Vagrantfile option if you want to force a rebuild, or you can delete the vm using the vSphere client.
277
+ * ovftool installer for Windows doesn't put ovftool.exe in your path. You can manually set your path, or install ovftool in the \HashiCorp\Vagrant\bin directory.
278
+ * Vagrant NFS synced folders cannot not be 100% reliable on multi-homed clients (your Vagrant pc/laptop/host). There is no 100% reliable way to know which IP is the correct, most reliable, most desirable, way to reach the VM guest.
279
279
  * Plugin V2.0.1 - 2.0.5 is not compatible with Windows (to support ed25519 ssh keys, net-ssh requires libsodium but it's not compatible with Windows). ed25519 support has been removed for now. It will be added back when net-ssh 5.x goes out of beta.
280
280
  * Vagrant 2.1.0 is not compatible with this plugin. Avoid Vagrant 2.1.0.
281
281
  * Cygwin & gitbash have console issues. Ruby module io/console does not have support. https://github.com/ruby/io-console/issues/2
@@ -284,13 +284,14 @@ Known issues with vmware_esxi
284
284
 
285
285
  Version History
286
286
  ---------------
287
- * 2.4.4 Show stderr if unable to connect to esxi host. Update GuestOS types.
287
+ * 2.4.5 Do not wait for `running` when resuming a VM that is not able to be resumed.
288
+ * 2.4.4 Show stderr if unable to connect to ESXi host. Update GuestOS types.
288
289
  * 2.4.3 Update GuestOS types.
289
- * 2.4.3 Fix, Allow disk stores with "(" or ")" in their name. Add support for up to 10 virtual nics
290
+ * 2.4.3 Fix, Allow disk stores with "(" or ")" in their name. Add support for up to 10 virtual NICs
290
291
  * 2.4.2 Fix i18n dependency.
291
292
  * 2.4.1 Change/Fix output of 'vagrant address' when a single machine is configured or specified.
292
293
 
293
- * 2.4.0 Add support for 'vagrant address', output ip address of guest.
294
+ * 2.4.0 Add support for 'vagrant address', output IP address of guest.
294
295
  Fix, exit 1 on vagrant up if unable to reach "running" state.
295
296
  Some code cleanup.
296
297
 
@@ -300,16 +301,16 @@ Version History
300
301
 
301
302
  * 2.3.0 Add support to specify DiskStore for guest_storage virtual disks.
302
303
  Add local_failonwarning Vagrantfile option.
303
- Fix, make plugin more compatible with Ovftool 4.3.0
304
+ Fix, make plugin more compatible with OVFTool 4.3.0
304
305
 
305
306
  * 2.2.2 Fix, Avoid crash if esxi_password is nil.
306
307
 
307
308
  * 2.2.1 Fix, clone_from_vm not working on MAC.
308
309
  Fix, enabled SetHostname.
309
- Fix, Multimachine not working with multiple esxi hosts and different passwords.
310
+ Fix, Multimachine not working with multiple ESXi hosts and different passwords.
310
311
 
311
312
  * 2.2.0 Add support to extend boot disk size.
312
- Fix, add many more special characters to encode in esxi passwords.
313
+ Fix, add many more special characters to encode in ESXi passwords.
313
314
 
314
315
  * 2.1.0 Add support for clone_from_vm.
315
316
  Fix, use esxcli to get storage information.
@@ -317,22 +318,22 @@ Version History
317
318
  * 2.0.7 Fix, Doesn't wait for running when executing "vagrant reload"
318
319
  Fix, "vagrant halt" will now attempt a graceful shutdown before doing a hard power off.
319
320
 
320
- * 2.0.6 Fix Windows compatibility by not supporting ed25519 ssh keys. When net-ssh 5.x is released AND vagrant allows it's use, I will support ed25519 again.
321
+ * 2.0.6 Fix Windows compatibility by not supporting ed25519 ssh keys. When net-ssh 5.x is released AND Vagrant allows its use, I will support ed25519 again.
321
322
  Fix, encode '/' in esxi passwords.
322
323
  Fix, Get local IP address for NFS syncd folders. Filter out localhost 127.0.0.0/8.
323
324
  Work-around 'prompt:' issues with unsupported consoles. Cygwin & gitbash, for example.
324
325
 
325
326
  * 2.0.5 Performance enhancement. Guest IP caching
326
- Performance enhancement. Optimize esxi connectivity checks.
327
+ Performance enhancement. Optimize ESXi connectivity checks.
327
328
  Performance enhancement & bugfix. Get local IP address for NFS syncd folders.
328
- Fix, unable to get VMID if getallvms command produces any errors (for other vms).
329
+ Fix, unable to get VMID if getallvms command produces any errors (for other VMs).
329
330
 
330
- * 2.0.2 Add support to add additional storage to guest vms.
331
- Fix, encode (space) in esxi passwords.
331
+ * 2.0.2 Add support to add additional storage to guest VMs.
332
+ Fix, encode (space) in ESXi passwords.
332
333
 
333
334
  * 2.0.1 Updated version:
334
335
  Most Vagrantfile options have been renamed to be consistent and for clarity.
335
- vagrant up, more organized summary by esxi/guest options.
336
+ vagrant up, more organized summary by ESXi/guest options.
336
337
  Lots of Code cleanup.
337
338
  Add support for snapshot options (includeMemory & quiesced)
338
339
  Snapshot save/push adds a description.
@@ -1,33 +1,32 @@
1
1
  #
2
2
  # Multi machine, essential options Vagrant file example. (documentation removed)
3
3
  #
4
+ nodes = {
5
+ "vm-multi1" => ["hashicorp/precise64", 1, 1024, 21 ],
6
+ "vm-multi2" => ["generic/centos7", 2, 2048, 22 ],
7
+ }
4
8
 
5
- nodes = [
6
- { hostname: 'VM-multi1', box: 'hashicorp/precise64' },
7
- { hostname: 'VM-multi2', box: 'hashicorp/precise64' }
8
- ]
9
+ Vagrant.configure(2) do |config|
10
+ nodes.each do | (name, cfg) |
11
+ box, numvcpus, memory, storage = cfg
9
12
 
10
- Vagrant.configure('2') do |config|
11
- nodes.each do |node|
12
- config.vm.define node[:hostname] do |node_config|
13
- node_config.vm.hostname = node[:hostname]
14
- node_config.vm.box = node[:box]
15
- node_config.vm.synced_folder('.', '/Vagrantfiles', type: 'rsync')
16
- end
17
- end
13
+ config.vm.define name do |machine|
14
+ machine.vm.box = box
15
+ machine.vm.hostname = name
16
+ machine.vm.synced_folder('.', '/Vagrantfiles', type: 'rsync')
18
17
 
19
- config.vm.provider :vmware_esxi do |esxi|
20
- #
21
- # Provider settings
22
- #
23
- esxi.esxi_hostname = 'esxi'
24
- esxi.esxi_username = 'root'
25
- esxi.esxi_password = 'file:'
26
- #esxi.esxi_hostport = 22
27
- #esxi.esxi_virtual_network = 'vmnet_example'
28
- #esxi.esxi_disk_store = 'DS_001'
29
- #esxi.esxi_resource_pool = '/Vagrant'
30
- #esxi.guest_memsize = '2048'
31
- #esxi.guest_numvcpus = '2'
18
+ machine.vm.provider :vmware_esxi do |esxi|
19
+ esxi.esxi_hostname = 'esxi'
20
+ esxi.esxi_username = 'root'
21
+ esxi.esxi_password = 'file:'
22
+ esxi.esxi_virtual_network = "VM Network"
23
+ esxi.guest_numvcpus = numvcpus
24
+ esxi.guest_memsize = memory
25
+ esxi.guest_storage = storage
26
+ #esxi.clone_from_vm = box
27
+ esxi.local_allow_overwrite = 'True'
28
+
29
+ end
30
+ end
32
31
  end
33
32
  end
@@ -47,9 +47,14 @@ module VagrantPlugins
47
47
  def self.action_resume
48
48
  Vagrant::Action::Builder.new.tap do |b|
49
49
  b.use SetESXiPassword
50
- b.use ReadState
51
- b.use Resume
52
- b.use WaitForState, :running, 240
50
+ b.use Call, ReadState do |env1, b1|
51
+ if env1[:machine_state].to_s == 'not_created'
52
+ b1.use Resume
53
+ else
54
+ b1.use Resume
55
+ b1.use WaitForState, :running, 240
56
+ end
57
+ end
53
58
  end
54
59
  end
55
60
 
@@ -57,8 +57,8 @@ module VagrantPlugins
57
57
  # Try to get first interface. This is the prefered method
58
58
  # when you have multiple network interfaces
59
59
  ssh_execute_cmd = "vim-cmd vmsvc/get.guest #{machine.id} 2>/dev/null |"
60
- ssh_execute_cmd << 'grep -A 5 "deviceConfigId = 4000" |tail -1|'
61
- ssh_execute_cmd << 'grep -oE "((1?[0-9][0-9]?|2[0-4][0-9]|25[0-5])\\.){3}(1?[0-9][0-9]?|2[0-4][0-9]|25[0-5])"'
60
+ ssh_execute_cmd << 'sed \'1!G;h;$!d\' |awk \'/deviceConfigId = 4000/,/ipAddress/\' |'
61
+ ssh_execute_cmd << 'grep -oE "((1?[0-9][0-9]?|2[0-4][0-9]|25[0-5])\\.){3}(1?[0-9][0-9]?|2[0-4][0-9]|25[0-5])" |tail -1'
62
62
  r = ssh.exec!(ssh_execute_cmd)
63
63
  ipaddress = r.strip
64
64
 
@@ -8,6 +8,7 @@ module VagrantPlugins
8
8
  # This action reads the state of the machine and puts it in the
9
9
  # `:machine_state_id` key in the environment.
10
10
  class ReadState
11
+ @@nfs_valid_ids = []
11
12
  def initialize(app, env)
12
13
  @app = app
13
14
  @logger = Log4r::Logger.new('vagrant_vmware_esxi::action::read_state')
@@ -17,13 +18,13 @@ module VagrantPlugins
17
18
  env[:machine_state] = read_state(env)
18
19
 
19
20
  # Do NFS stuff
20
- if (env[:machine_state].to_s.include? "running") && ($nfs_host_ip.nil?)
21
+ if (env[:machine_state].to_s.include? "running") && (@nfs_host_ip.nil?)
21
22
  ssh_info = env[:machine].ssh_info
22
23
  if defined?(ssh_info[:host])
23
24
  env[:nfs_machine_ip] = [ssh_info[:host]]
24
- $nfs_machine_ip = [ssh_info[:host]].dup
25
- env[:nfs_valid_ids] = [env[:machine].id]
26
- $nfs_valid_ids = [env[:machine].id].dup
25
+ @nfs_machine_ip = [ssh_info[:host]].dup
26
+ @@nfs_valid_ids |= [env[:machine].id]
27
+ env[:nfs_valid_ids] = @@nfs_valid_ids
27
28
 
28
29
  begin
29
30
  puts "Get local IP address for NFS. (pri)" if env[:machine].provider_config.debug =~ %r{ip}i
@@ -40,7 +41,7 @@ module VagrantPlugins
40
41
  end
41
42
  end
42
43
 
43
- $nfs_host_ip = env[:nfs_host_ip].dup
44
+ @nfs_host_ip = env[:nfs_host_ip].dup
44
45
  if env[:nfs_host_ip].nil?
45
46
  # Something bad happened above. Give up on NFS.
46
47
  env[:nfs_machine_ip] = nil
@@ -56,9 +57,9 @@ module VagrantPlugins
56
57
  end
57
58
  else
58
59
  # Use Cached entries
59
- env[:nfs_machine_ip] = $nfs_machine_ip
60
- env[:nfs_host_ip] = $nfs_host_ip
61
- env[:nfs_valid_ids] = $nfs_valid_ids
60
+ env[:nfs_machine_ip] = @nfs_machine_ip
61
+ env[:nfs_host_ip] = @nfs_host_ip
62
+ env[:nfs_valid_ids] = @@nfs_valid_ids
62
63
  end
63
64
 
64
65
  @app.call(env)
@@ -30,7 +30,7 @@ module VagrantPlugins
30
30
  (env[:machine_state].to_s == 'running')
31
31
  env[:ui].info I18n.t('vagrant_vmware_esxi.already_powered_on')
32
32
  elsif env[:machine_state].to_s == 'not_created'
33
- env[:ui].info I18n.t('vagrant_vmware_esxi.vagrant_vmware_esxi_message',
33
+ env[:ui].info I18n.t('vagrant_vmware_esxi.vagrant_vmware_esxi_message',
34
34
  message: 'Cannot resume in this state')
35
35
  elsif (env[:machine_state].to_s == 'powered_off') ||
36
36
  (env[:machine_state].to_s == 'suspended')
@@ -1,7 +1,7 @@
1
1
  # VERSION
2
2
  module VagrantPlugins
3
3
  module ESXi
4
- VERSION = '2.4.4'
4
+ VERSION = '2.4.5'
5
5
  $vagrant_vmware_esxi_version = VERSION
6
6
  end
7
7
  end
@@ -15,11 +15,15 @@ Gem::Specification.new do |s|
15
15
  s.files = `git ls-files`.split($\)
16
16
  s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
17
17
  s.test_files = s.files.grep(%r{^(test|spec|features)/})
18
+ s.require_path = 'lib'
18
19
 
19
20
  s.add_runtime_dependency 'i18n', '~> 1.0'
20
21
  s.add_runtime_dependency 'log4r', '~> 1.1'
21
22
  s.add_runtime_dependency "iniparse", '> 1.0'
22
- s.add_runtime_dependency "nokogiri", '> 1.5'
23
+ s.add_runtime_dependency 'nokogiri', '~> 1.6'
24
+
25
+ s.add_development_dependency 'rake'
26
+ s.add_development_dependency 'rspec'
23
27
 
24
28
  # Needed only to support ed25519 ssh keys with net-ssh 4.x. Won't need this for net-ssh 5.x.
25
29
  #s.add_runtime_dependency 'rbnacl', '>= 4.0', '< 5.0'
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.4.4
4
+ version: 2.4.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Senkerik
@@ -56,16 +56,44 @@ dependencies:
56
56
  name: nokogiri
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - ">"
59
+ - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: '1.5'
61
+ version: '1.6'
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - ">"
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.6'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rake
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rspec
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
67
95
  - !ruby/object:Gem::Version
68
- version: '1.5'
96
+ version: '0'
69
97
  description: A Vagrant plugin that adds a VMware ESXi provider support
70
98
  email: josenk@jintegrate.co
71
99
  executables: []
@@ -74,6 +102,7 @@ extra_rdoc_files: []
74
102
  files:
75
103
  - ESXi_guestos_types.md
76
104
  - Gemfile
105
+ - Gemfile.path
77
106
  - LICENSE
78
107
  - README.md
79
108
  - Rakefile
@@ -129,8 +158,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
129
158
  - !ruby/object:Gem::Version
130
159
  version: '0'
131
160
  requirements: []
132
- rubyforge_project:
133
- rubygems_version: 2.6.13
161
+ rubygems_version: 3.0.3
134
162
  signing_key:
135
163
  specification_version: 4
136
164
  summary: Vagrant ESXi provider plugin