Skip to content

Commit

Permalink
Merge pull request ANXS#296 from jlozadad/jlozadad_vagrantfile
Browse files Browse the repository at this point in the history
change vagrantfile to point to the official centos images since those support different providers.
  • Loading branch information
UnderGreen authored Mar 18, 2018
2 parents 68c7d7c + 79d53fb commit d41d970
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,21 @@ Vagrant.configure('2') do |config|
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 = "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.box = "centos/7"
#machine.vm.box = "centos/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.verbose = "v"
ansible.become = true
ansible.inventory_path = 'vagrant-inventory'
ansible.host_key_checking = false
end
Expand Down

0 comments on commit d41d970

Please sign in to comment.