Advertisement
Guest User

Untitled

a guest
Nov 18th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. Vagrant.configure("2") do |config|
  2. config.vm.box = "ubuntu/xenial64"
  3. config.vm.network "private_network", ip: "192.168.33.10"
  4. config.vm.hostname = "test.dev"
  5. config.ssh.forward_agent = true
  6.  
  7. config.vm.provider "virtualbox" do |vb|
  8. vb.memory = "1824"
  9. end
  10.  
  11. # Only contains ansible dependencies
  12. # change vagrant boxes password to vagrant (couldn't find what its default pass was)
  13. config.vm.provision "shell",
  14. inline: "sudo apt-get install python-minimal -y"
  15.  
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement