aboutsummaryrefslogtreecommitdiff
path: root/vagrant
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-02-09 09:39:15 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-02-09 09:39:15 +0100
commit989bff1a3a6b72b41ed25cfad74dbeb69bfea099 (patch)
treecdadb25718190d96275b2eeea90c7b3703e1e99a /vagrant
parentUpdated conf file for Vagrant. (diff)
downloadnewspipe-989bff1a3a6b72b41ed25cfad74dbeb69bfea099.tar.gz
newspipe-989bff1a3a6b72b41ed25cfad74dbeb69bfea099.tar.bz2
newspipe-989bff1a3a6b72b41ed25cfad74dbeb69bfea099.zip
Updated conf file for Vagrant (Utopic is now used).
Diffstat (limited to 'vagrant')
-rw-r--r--vagrant/Vagrantfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/vagrant/Vagrantfile b/vagrant/Vagrantfile
index f81d599f..ee48ae73 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/trusty/current/trusty-server-cloudimg-amd64-vagrant-disk1.box"
+ config.vm.box_url = "https://cloud-images.ubuntu.com/vagrant/utopic/current/utopic-server-cloudimg-amd64-vagrant-disk1.box"
config.vm.provision :shell, path: "bootstrap.sh"
# Disable automatic box update checking. If you disable this, then
bgstack15