123456789101112131415161718192021222324252627282930313233343536 |
-
-
-
-
- Vagrant.configure('2') do |config|
-
- config.vm.box = 'box-cutter/debian75'
-
-
-
-
-
-
- config.vm.provider :virtualbox do |v|
- v.memory = 512
- end
-
- config.vm.provider :vmware_fusion do |v|
- v.vmx["memsize"] = "512"
- end
-
- 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
-
- end
|