vendor/ANXS.postgresql/Vagrantfile in taperole-1.3.6 vs vendor/ANXS.postgresql/Vagrantfile in taperole-1.4.0
- old
+ new
@@ -1,16 +1,24 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure('2') do |config|
- config.vm.define 'anxs' do |c|
- c.vm.box = 'ubuntu/trusty64'
- c.vm.network :private_network, ip: '192.168.88.22'
- c.vm.hostname = 'anxs.local'
- c.vm.provision 'ansible' do |ansible|
- ansible.playbook = 'test.yml'
+
+ # Ensure we use our vagrant private key
+ config.ssh.insert_key = false
+ config.ssh.private_key_path = '~/.vagrant.d/insecure_private_key'
+
+ config.vm.define 'anxs' do |machine|
+ #machine.vm.box = 'centos/7'
+ machine.vm.box = 'ubuntu/trusty64'
+ machine.vm.network :private_network, ip: '192.168.88.22'
+ machine.vm.hostname = 'anxs.local'
+ machine.vm.provision 'ansible' do |ansible|
+ ansible.playbook = 'tests/playbook.yml'
ansible.sudo = true
ansible.inventory_path = 'vagrant-inventory'
ansible.host_key_checking = false
end
+
end
+
end