vendor/ANXS.postgresql/Vagrantfile in taperole-2.0.4 vs vendor/ANXS.postgresql/Vagrantfile in taperole-2.0.5

- old
+ new

@@ -6,18 +6,20 @@ # 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 = "ubuntu/trusty64" + machine.vm.box = "bento/ubuntu-16.04" + # machine.vm.box = "ubuntu/trusty64" #machine.vm.box = "ubuntu/precise64" #machine.vm.box = "debian/jessie64" #machine.vm.box = "debian/wheezy64" #machine.vm.box = "chef/centos-7.1" #machine.vm.box = "chef/centos-6.6" 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