설명 없음
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 1.1KB

123456789101112131415161718192021222324252627282930313233343536
  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. # Debian 7 is the officially supported Linux distribution
  6. config.vm.box = 'box-cutter/debian75'
  7. # Comment the entry above and uncomment one of these two entries
  8. # below if you want to develop/test against Ubuntu 12.04/14.04.
  9. # config.vm.box = 'box-cutter/ubuntu1204'
  10. # config.vm.box = 'box-cutter/ubuntu1404'
  11. config.vm.provider :virtualbox do |v|
  12. v.memory = 512
  13. end
  14. config.vm.provider :vmware_fusion do |v|
  15. v.vmx["memsize"] = "512"
  16. end
  17. config.vm.hostname = 'sovereign.local'
  18. config.vm.network "private_network", ip: "172.16.100.2"
  19. config.vm.provision :ansible do |ansible|
  20. ansible.playbook = 'site.yml'
  21. ansible.host_key_checking = false
  22. ansible.extra_vars = { ansible_ssh_user: 'vagrant', testing: true }
  23. # ansible.tags = ['blog']
  24. # ansible.skip_tags = ['openvpn']
  25. # ansible.verbose = 'vvvv'
  26. end
  27. end