README.md in vagrant-vcloud-0.4.7 vs README.md in vagrant-vcloud-0.5.0

- old
+ new

@@ -1,6 +1,6 @@ -[Vagrant](http://www.vagrantup.com) provider for VMware vCloud Director® [![Gem Version](https://badge.fury.io/rb/vagrant-vcloud.svg)](http://badge.fury.io/rb/vagrant-vcloud) [![Code Climate](https://codeclimate.com/github/frapposelli/vagrant-vcloud/badges/gpa.svg)](https://codeclimate.com/github/frapposelli/vagrant-vcloud) [![Dependency Status](https://gemnasium.com/frapposelli/vagrant-vcloud.svg)](https://gemnasium.com/frapposelli/vagrant-vcloud) [![Join the chat at https://gitter.im/frapposelli/vagrant-vcloud](https://badges.gitter.im/frapposelli/vagrant-vcloud.svg)](https://gitter.im/frapposelli/vagrant-vcloud?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) +[Vagrant](http://www.vagrantup.com) provider for VMware vCloud Director® [![Gem Version](https://badge.fury.io/rb/vagrant-vcloud.svg)](http://badge.fury.io/rb/vagrant-vcloud) [![Code Climate](https://codeclimate.com/github/frapposelli/vagrant-vcloud/badges/gpa.svg)](https://codeclimate.com/github/frapposelli/vagrant-vcloud) [![Dependency Status](https://gemnasium.com/frapposelli/vagrant-vcloud.svg)](https://gemnasium.com/frapposelli/vagrant-vcloud) ======================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================== Please note that this software is still Alpha/Beta quality and is not recommended for production usage. We have a wide array of boxes available at [Vagrant Cloud](https://vagrantcloud.com/gosddc) you can use them directly or you can roll your own as you please, make sure to install VMware tools in it. @@ -50,10 +50,13 @@ { name: 'MyNetwork', ip_subnet: '10.10.10.10/255.255.255.0' } ] + }, + ovf_properties: { + 'test-variable' => 'true' } } nodes = [ { @@ -130,9 +133,12 @@ pro.power_on = node[:power_on] pro.metadata_vm = node[:metadata] pro.nested_hypervisor = node[:nested_hypervisor] pro.enable_guest_customization = node[:enable_guest_customization] pro.guest_customization_script = node[:guest_customization_script] + if vapp[:ovf_properties] + pro.ovf_properties = vapp[:ovf_properties] + end end node_config.vm.network :public_network else node_config.vm.network :forwarded_port, guest: 80,