aboutsummaryrefslogtreecommitdiff
path: root/vagrant/Vagrantfile
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-02-09 10:20:50 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-02-09 10:20:50 +0100
commitb59ac62ef0a3a06860a5ba79a90c152de1376548 (patch)
treefa15acbcbc72a6d1e66fcf6e1b60de5c294d1ef7 /vagrant/Vagrantfile
parentUpdated conf file for Vagrant (feedparser 5.1.4). (diff)
downloadnewspipe-b59ac62ef0a3a06860a5ba79a90c152de1376548.tar.gz
newspipe-b59ac62ef0a3a06860a5ba79a90c152de1376548.tar.bz2
newspipe-b59ac62ef0a3a06860a5ba79a90c152de1376548.zip
Updated conf file for Vagrant (ubuntu 14.04.
Diffstat (limited to 'vagrant/Vagrantfile')
-rw-r--r--vagrant/Vagrantfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/vagrant/Vagrantfile b/vagrant/Vagrantfile
index ee48ae73..e92e0933 100644
--- a/vagrant/Vagrantfile
+++ b/vagrant/Vagrantfile
@@ -11,7 +11,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# Every Vagrant virtual environment requires a box to build off of.
config.vm.box = "pyAggr3g470r (Ubuntu Trusty Server)"
- config.vm.box_url = "https://cloud-images.ubuntu.com/vagrant/utopic/current/utopic-server-cloudimg-amd64-vagrant-disk1.box"
+ config.vm.box_url = "https://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-i386-juju-vagrant-disk1.box"
config.vm.provision :shell, path: "bootstrap.sh"
# Disable automatic box update checking. If you disable this, then
bgstack15