Bez popisu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Vagrantfile 965B

12345678910111213141516171819202122232425262728293031
  1. # -*- mode: ruby -*-
  2. # If you're having issues, upgrade to Vagrant 1.3.x. It generates an inventory automatically:
  3. # https://github.com/mitchellh/vagrant/blob/master/CHANGELOG.md#130-september-5-2013
  4. Vagrant.configure('2') do |config|
  5. # Source: https://vagrantcloud.com/box-cutter/debian75
  6. config.vm.box = 'box-cutter/debian75'
  7. config.vm.provider :virtualbox do |vbox, override|
  8. vbox.customize ["modifyvm", :id, "--memory", 512]
  9. end
  10. config.vm.provider :vmware_fusion do |vbox, override|
  11. vbox.customize ["modifyvm", :id, "--memory", 512]
  12. end
  13. config.vm.hostname = 'sovereign.local'
  14. config.vm.network "private_network", ip: "172.16.100.2"
  15. config.vm.provision :ansible do |ansible|
  16. ansible.playbook = 'site.yml'
  17. ansible.host_key_checking = false
  18. ansible.extra_vars = { ansible_ssh_user: 'vagrant', testing: true }
  19. # ansible.tags = ['blog']
  20. # ansible.skip_tags = ['openvpn']
  21. # ansible.verbose = 'vvvv'
  22. end
  23. end