vagrant-vmware-esxi 2.4.3 → 2.4.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f99c6f09b644046b301eb4a379bd9eb7cdb280ac
4
- data.tar.gz: a7220a1c84791c7d947db6b90b8622afdd25c5f1
3
+ metadata.gz: 8839b6a6c7237f6f1f6b16372942cc64b3e7249e
4
+ data.tar.gz: 6ed9d6316f258988ae6bb41e456d8549af844be9
5
5
  SHA512:
6
- metadata.gz: 44ec1beb80a3bec28e1aaba82bfb08a5f7e9600c4423ee7cbb0a96459085175f808d99a8b378332eec1dc7c6a975b26c947d620d01c913ae3d56aee5bf7ae7fd
7
- data.tar.gz: f57a3df8f1b137f73d3d18509788b48e70da4bc8ad80bf542063ab5203c6f8d22ae859bb80446b716ce721ae5cab78b9b9be425897e513a74f4406afd172e902
6
+ metadata.gz: 466b185a31719cb17729bfcd6b54f924a5fcc5262ca3ae1c72a7f7d8650e5c342638fa3a12d700cd9c0769420fb90497949955b931ab7c1b26b24f6d20be1ee4
7
+ data.tar.gz: afcbe1de25cb5e1d3c4e73b55e2aa99ae9cb0f63a485b1ed9751e26d3cfdfaf8f9eea9a7e72d0cc0fd146bcf0aea982ba87d990e5b93964902e4be8d4400b7ce
data/README.md CHANGED
@@ -9,20 +9,19 @@ Refer to the WIKI for documentation, examples and other information...
9
9
  >https://github.com/josenk/vagrant-vmware-esxi/wiki
10
10
 
11
11
 
12
- Looking for volunteers to help with terraform-provider-esxi
13
- -----------------------------------------------------------
14
- If you are using vagrant as an esxi vm deployment tool (infa as code), you may want to consider a better tool. Terraform. 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...
12
+ Vagrant vs Terraform.
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...
15
+ >https://www.vagrantup.com/intro/vs/terraform.html
16
+
15
17
  >https://github.com/josenk/terraform-provider-esxi
18
+ >https://github.com/josenk/vagrant-vmware-esxi
16
19
 
17
20
 
18
- What's new!
19
- -----------
20
- Added support to clone from a VM! Refer to the WIKI for documentation, example and other information.
21
- >https://github.com/josenk/vagrant-vmware-esxi/wiki/How-to-clone_from_vm
22
21
 
23
22
  Features and Compatibility
24
23
  --------------------------
25
- * Clone from VMs. 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.
26
25
  * Any of the vmware Box formats should be compatible.
27
26
  * vmware_desktop, vmware_fusion, vmware_workstation...
28
27
  * To be fully functional, you must have open-vm-tools or vmware tools installed.
@@ -52,6 +51,7 @@ Requirements
52
51
  * Google 'How to enable ssh access on esxi'
53
52
  4. The boxes must have open-vm-tools or vmware-tools installed to properly transition to the 'running' state.
54
53
  5. In general, you should know how to use vagrant, esxi and some networking...
54
+ 6. You will most likely need a DHCP server on your primary network if you are deploying public boxes.
55
55
 
56
56
  Why this plugin?
57
57
  ----------------
@@ -168,7 +168,7 @@ Vagrant.configure('2') do |config|
168
168
  # The Default will be automatically generated.
169
169
  #esxi.guest_name = 'Custom-Guest-VM_Name'
170
170
 
171
- # OPTIONAL. When automatically naming VMs, use this prifix.
171
+ # OPTIONAL. When automatically naming VMs, use this prefix.
172
172
  #esxi.guest_name_prefix = 'V-'
173
173
 
174
174
 
@@ -269,19 +269,13 @@ Basic usage
269
269
 
270
270
 
271
271
 
272
- Upgrading from vagrant-vmware-esxi 1.x.x
273
- ----------------------------------------
274
- See wiki for more information.
275
- >https://github.com/josenk/vagrant-vmware-esxi/wiki/Upgrading-from-vagrant-vmware-esxi-1.x.x
276
-
277
-
278
272
  Known issues with vmware_esxi
279
273
  -----------------------------
280
274
  * The boxes must have open-vm-tools or vmware-tools installed to properly transition to the 'running' state.
281
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.
282
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.
283
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.
284
- * Vagrant NFS synced folders cannot not 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.
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.
285
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.
286
280
  * Vagrant 2.1.0 is not compatible with this plugin. Avoid Vagrant 2.1.0.
287
281
  * Cygwin & gitbash have console issues. Ruby module io/console does not have support. https://github.com/ruby/io-console/issues/2
@@ -290,9 +284,11 @@ Known issues with vmware_esxi
290
284
 
291
285
  Version History
292
286
  ---------------
287
+ * 2.4.4 Show stderr if unable to connect to esxi host. Update GuestOS types.
288
+ * 2.4.3 Update GuestOS types.
293
289
  * 2.4.3 Fix, Allow disk stores with "(" or ")" in their name. Add support for up to 10 virtual nics
294
- * 2.4.2 Fix i18n dependancy.
295
- * 2.4.1 Change/Fix output of 'vagrant address' when a single machine is configured or specifed.
290
+ * 2.4.2 Fix i18n dependency.
291
+ * 2.4.1 Change/Fix output of 'vagrant address' when a single machine is configured or specified.
296
292
 
297
293
  * 2.4.0 Add support for 'vagrant address', output ip address of guest.
298
294
  Fix, exit 1 on vagrant up if unable to reach "running" state.
@@ -141,7 +141,7 @@ Vagrant.configure('2') do |config|
141
141
  # Otherwise you can set a fixed guest VM name here.
142
142
  #esxi.guest_name = 'Custom-Guest-VM_Name'
143
143
 
144
- # OPTIONAL. When automatically naming VMs, use this prifix.
144
+ # OPTIONAL. When automatically naming VMs, use this prefix.
145
145
  #esxi.guest_name_prefix = 'V-'
146
146
 
147
147
  # OPTIONAL. Set the guest username login. The default is 'vagrant'.
@@ -178,7 +178,8 @@ module VagrantPlugins
178
178
  @logger.info('vagrant-vmware-esxi, set_esxi_password: '\
179
179
  "ESXi version: #{esxi_version}")
180
180
  raise Errors::ESXiError,
181
- message: 'Unable to connect to ESXi host!'
181
+ message: 'Unable to connect to ESXi host!'\
182
+ "Error: #{esxi_version}"
182
183
  end
183
184
  end
184
185
  rescue
@@ -121,6 +121,7 @@ module VagrantPlugins
121
121
  'centos6',
122
122
  'centos7-64',
123
123
  'centos7',
124
+ 'centos8-64',
124
125
  'centos',
125
126
  'coreos-64',
126
127
  'darwin10-64',
@@ -132,6 +133,9 @@ module VagrantPlugins
132
133
  'darwin14-64',
133
134
  'darwin15-64',
134
135
  'darwin16-64',
136
+ 'darwin17-64',
137
+ 'darwin18-64',
138
+ 'darwin19-64',
135
139
  'darwin-64',
136
140
  'darwin',
137
141
  'debian10-64',
@@ -155,6 +159,10 @@ module VagrantPlugins
155
159
  'fedora',
156
160
  'freebsd-64',
157
161
  'freebsd',
162
+ 'freebsd11-64',
163
+ 'freebsd11',
164
+ 'freebsd12-64',
165
+ 'freebsd12',
158
166
  'genericlinux',
159
167
  'mandrake',
160
168
  'mandriva-64',
@@ -197,6 +205,7 @@ module VagrantPlugins
197
205
  'rhel6',
198
206
  'rhel7-64',
199
207
  'rhel7',
208
+ 'rhel8-64',
200
209
  'sjds',
201
210
  'sles10-64',
202
211
  'sles10',
@@ -1,7 +1,7 @@
1
1
  # VERSION
2
2
  module VagrantPlugins
3
3
  module ESXi
4
- VERSION = '2.4.3'
4
+ VERSION = '2.4.4'
5
5
  $vagrant_vmware_esxi_version = VERSION
6
6
  end
7
7
  end
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.3
4
+ version: 2.4.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Senkerik