Skip to content

Commit 37bc398

Browse files
author
Mauro Oviedo
committed
Updated ubuntu/xenial64 VM image used for vagrant.
1 parent a2218ba commit 37bc398

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

Vagrantfile

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ Vagrant.configure('2') do |config|
88
config.ssh.private_key_path = '~/.vagrant.d/insecure_private_key'
99

1010
config.vm.define 'anxs' do |machine|
11-
machine.vm.box = "ubuntu/xenial64"
12-
#machine.vm.box = "ubuntu/trusty64"
11+
machine.vm.box = "bento/ubuntu-16.04"
12+
# machine.vm.box = "ubuntu/trusty64"
1313
#machine.vm.box = "ubuntu/precise64"
1414
#machine.vm.box = "debian/jessie64"
1515
#machine.vm.box = "debian/wheezy64"
@@ -19,13 +19,6 @@ Vagrant.configure('2') do |config|
1919
machine.vm.network :private_network, ip: '192.168.88.22'
2020
machine.vm.hostname = 'anxs.local'
2121

22-
# Install python 2.7 to unbuntu 16.04
23-
if machine.vm.box == "ubuntu/xenial64"
24-
machine.vm.provision "shell" do |s|
25-
s.inline = "sudo apt-get install -y python-minimal"
26-
end
27-
end
28-
2922
machine.vm.provision 'ansible' do |ansible|
3023
ansible.playbook = 'tests/playbook.yml'
3124
ansible.sudo = true

0 commit comments

Comments
 (0)