linksonice
linksonice
The following is my Vagrantfile: ``` javascript Vagrant.configure("2") do |config| config.vm.box = 'dummy' config.vm.box_url = 'dummy.box' config.vm.provider :vsphere do |vsphere, override| vsphere.host = 'my-vsphere-server-host' vsphere.name = 'my-hostname' # vsphere.data_center_name =...
Spots, you mean it should be outside the config.vm.provider block, and say "config.vm.network 'private_network', ip: '10.161.68.209' not "override.vm.network 'private_network', ip: '10.161.68.209' ?
Thanks Steve. No cigar yet though, even with your exact vagrantfile as seen in your last post there, but with added "vsphere.insecure = 'true'". I'm thinking it's because my ruby...
Bingo! There was a rather obvious error on my part in the end - which was failing to have a valid vmware-tools on the template. BTW this works with enterprise...