Guest User

Untitled

a guest
Sep 25th, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. Vagrant.configure("2") do |config|
  2. config.vm.box = "vmware/photon"
  3. config.vm.hostname = "video"
  4. config.vm.synced_folder ".", "/vagrant", type: "nfs", disabled: true
  5. config.vm.provision "shell", path: "./bootstrap.sh"
  6. config.vm.provider "vmware_esxi" do |esxi|
  7. esxi.esxi_hostname = 'ESXI_IP'
  8. esxi.esxi_username = 'ESXI_USER'
  9. esxi.esxi_password = 'ESXI_PASSWORD'
  10. esxi.guest_numvcpus = '2'
  11. esxi.guest_memsize = '2048'
  12. end
  13. end
Add Comment
Please, Sign In to add comment