12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
-
-
- Vagrant.configure("2") do |config|
-
-
-
-
- config.vm.hostname = "sovereign.local"
- config.vm.network "private_network", ip: "172.16.100.2"
-
- config.vm.provision :ansible do |ansible|
- ansible.playbook = "site.yml"
- ansible.host_key_checking = false
- ansible.extra_vars = { ansible_ssh_user: "vagrant", testing: true }
-
-
-
-
- end
-
- config.vm.provider :virtualbox do |v|
- v.memory = 512
- end
-
- config.vm.provider :vmware_fusion do |v|
- v.vmx["memsize"] = "512"
- end
-
-
-
-
-
-
-
-
- if Vagrant.has_plugin? "vagrant-cachier"
- config.cache.enable :apt
- config.cache.scope = :box
- end
-
-
-
-
-
- config.vm.define "debian", primary: true do |debian|
- debian.vm.box = "box-cutter/debian76"
- end
-
-
-
-
-
- config.vm.define "precise", autostart: false do |precise|
- precise.vm.box = "box-cutter/ubuntu1204"
- end
-
-
-
-
-
- config.vm.define "trusty", autostart: false do |trusty|
- trusty.vm.box = "box-cutter/ubuntu1404"
- end
- end
|