Skip to content

Commit

Permalink
Add Fedora back to Vagrant tests. ANXS#393 fixed this.
Browse files Browse the repository at this point in the history
  • Loading branch information
gclough committed Mar 8, 2019
1 parent c1da157 commit 3c1f45e
Showing 1 changed file with 15 additions and 18 deletions.
33 changes: 15 additions & 18 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -87,24 +87,21 @@ Vagrant.configure('2') do |config|

end

#
# Broken, raised https://github.com/ANXS/postgresql/issues/390 to investigate
#
# 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 '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|

Expand Down

0 comments on commit 3c1f45e

Please sign in to comment.