Sha256: a2a2efa6b7a6ed65a10e37ba3c214f8310e87e8ec9a5e11dedbb43c21204b97e

Contents?: true

Size: 877 Bytes

Versions: 5

Compression:

Stored size: 877 Bytes

Contents

# -*- mode: ruby -*-
# vi: set ft=ruby :

Vagrant.configure('2') do |config|

  # 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 = "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
    end

  end

end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
taperole-2.1.1 vendor/ANXS.postgresql/Vagrantfile
taperole-2.1.0 vendor/ANXS.postgresql/Vagrantfile
taperole-2.0.7 vendor/ANXS.postgresql/Vagrantfile
taperole-2.0.6 vendor/ANXS.postgresql/Vagrantfile
taperole-2.0.5 vendor/ANXS.postgresql/Vagrantfile