Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
# -*- 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 'ubuntu16.local' do |machine|

    machine.vm.box = "bento/ubuntu-16.04"
    machine.vm.network :private_network, ip: '192.168.88.22'
    machine.vm.hostname = 'ubuntu16.local'

    machine.vm.provision 'ansible' do |ansible|
      ansible.playbook = 'tests/playbook.yml'
      ansible.verbose = "vvv"
      ansible.become = true
      ansible.inventory_path = 'vagrant-inventory'
      ansible.host_key_checking = false
    end

  end

  config.vm.define 'jessie64.local' do |machine|

    machine.vm.box = "debian/jessie64"
    machine.vm.network :private_network, ip: '192.168.88.23'
    machine.vm.hostname = 'jessie64.local'

    machine.vm.provision 'ansible' do |ansible|
      ansible.playbook = 'tests/playbook.yml'
      ansible.verbose = "vvv"
      ansible.become = true
      ansible.inventory_path = 'vagrant-inventory'
      ansible.host_key_checking = false
    end

  end

  config.vm.define 'wheezy64.local' do |machine|

    machine.vm.box = "debian/wheezy64"
    machine.vm.network :private_network, ip: '192.168.88.24'
    machine.vm.hostname = 'wheezy64.local'

    machine.vm.provision 'ansible' do |ansible|
      ansible.playbook = 'tests/playbook.yml'
      ansible.verbose = "vvv"
      ansible.become = true
      ansible.inventory_path = 'vagrant-inventory'
      ansible.host_key_checking = false
    end

  end

  config.vm.define 'centos6.local' do |machine|

    machine.vm.box = "centos/6"
    machine.vm.network :private_network, ip: '192.168.88.25'
    machine.vm.hostname = 'centos6.local'

    machine.vm.provision 'ansible' do |ansible|
      ansible.playbook = 'tests/playbook.yml'
      ansible.verbose = "vvv"
      ansible.become = true
      ansible.inventory_path = 'vagrant-inventory'
      ansible.host_key_checking = false
    end

  end

  config.vm.define 'centos7.local' do |machine|

    machine.vm.box = "centos/7"
    machine.vm.network :private_network, ip: '192.168.88.26'
    machine.vm.hostname = 'centos7.local'

    machine.vm.provision 'ansible' do |ansible|
      ansible.playbook = 'tests/playbook.yml'
      ansible.verbose = "vvv"
      ansible.become = true
      ansible.inventory_path = 'vagrant-inventory'
      ansible.host_key_checking = false
    end

  end

  config.vm.define 'fedora27.local' do |machine|

    machine.vm.box = "fedora/27-cloud-base"
    machine.vm.network :private_network, ip: '192.168.88.27'
    machine.vm.hostname = 'fedora27.local'

    machine.vm.provision 'ansible' do |ansible|
      ansible.playbook = 'tests/playbook.yml'
      ansible.verbose = "vvv"
      ansible.become = true
      ansible.inventory_path = 'vagrant-inventory'
      ansible.host_key_checking = false
    end

  end

  config.vm.define 'trusty64.local' do |machine|

    machine.vm.box = "ubuntu/trusty64"
    machine.vm.network :private_network, ip: '192.168.88.28'
    machine.vm.hostname = 'trusty64.local'

    machine.vm.provision 'ansible' do |ansible|
      ansible.playbook = 'tests/playbook.yml'
      ansible.verbose = "vvv"
      ansible.become = true
      ansible.inventory_path = 'vagrant-inventory'
      ansible.host_key_checking = false
    end

  end

#
# Broken, raised https://github.com/ANXS/postgresql/issues/391 to investigate
#
#  config.vm.define 'precise64.local' do |machine|
#
#    machine.vm.box = "ubuntu/precise64"
#    machine.vm.network :private_network, ip: '192.168.88.29'
#    machine.vm.hostname = 'precise64.local'
#
#    machine.vm.provision 'ansible' do |ansible|
#      ansible.playbook = 'tests/playbook.yml'
#      ansible.verbose = "vvv"
#      ansible.become = true
#      ansible.inventory_path = 'vagrant-inventory'
#      ansible.host_key_checking = false
#    end
#
#  end

end