summaryrefslogtreecommitdiff
path: root/Vagrantfile
diff options
context:
space:
mode:
authorVignesh Sarma K <vignesh.sarma@gmail.com>2015-08-20 11:44:59 +0530
committerVignesh Sarma K <vignesh.sarma@gmail.com>2015-08-24 13:22:57 +0530
commit16ccd218145bb7791b05922d826eb41018d4448e (patch)
treeb2d062aa84694d22a86ac2f4525ed55733d29db0 /Vagrantfile
parent5237234a2c26e1580538881230ff9ec04e06dfb7 (diff)
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.
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Vagrantfile b/Vagrantfile
index 9923762e..483b37de 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -2,8 +2,7 @@
# vi: set ft=ruby :
Vagrant::Config.run do |config|
- config.vm.box = "precise64"
- config.vm.box_url = "http://files.vagrantup.com/precise64.box"
+ config.vm.box = "ubuntu/trusty64"
config.vm.provision :shell, :path => "vagrant/provision.sh"
end