Skip to content

Commit 16ccd21

Browse files
committed
Update ubuntu version - Fix vagrant provision failure
A simple `vagrant up` fails. The default image seems to not have `apt-add-repository`. Fixed by useing newer version of ubuntu instead of packages This only affects local development, not travisci.
1 parent 5237234 commit 16ccd21

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Diff for: Vagrantfile

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
# vi: set ft=ruby :
33

44
Vagrant::Config.run do |config|
5-
config.vm.box = "precise64"
6-
config.vm.box_url = "http://files.vagrantup.com/precise64.box"
5+
config.vm.box = "ubuntu/trusty64"
76

87
config.vm.provision :shell, :path => "vagrant/provision.sh"
98
end

0 commit comments

Comments
 (0)