Skip to content

Commit

Permalink
chor: switch vagrant box to xenial
Browse files Browse the repository at this point in the history
  • Loading branch information
franklinkim committed Oct 15, 2017
1 parent 0c99260 commit 32c4c3d
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,17 @@ Vagrant.configure("2") do |config|
config.vbguest.no_remote = true
config.vbguest.auto_update = false

config.vm.define 'trusty' do |instance|
instance.vm.box = 'ubuntu/trusty64'
config.vm.define 'xenial' do |instance|
instance.vm.box = 'ubuntu/xenial64'
end

config.vm.provision "shell", inline: "sudo apt-get update"
config.vm.provision "shell", inline: "sudo apt-get install -y python"

# View the documentation for the provider you're using for more
# information on available options.
config.vm.provision "ansible" do |ansible|
ansible.playbook = "tests/playbook.yml"
ansible.playbook = "tests/main.yml"
ansible.verbose = 'vv'
ansible.sudo = true
end
Expand Down

0 comments on commit 32c4c3d

Please sign in to comment.