From b59ac62ef0a3a06860a5ba79a90c152de1376548 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Mon, 9 Feb 2015 10:20:50 +0100 Subject: Updated conf file for Vagrant (ubuntu 14.04. --- vagrant/Vagrantfile | 2 +- vagrant/bootstrap.sh | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) (limited to 'vagrant') 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 diff --git a/vagrant/bootstrap.sh b/vagrant/bootstrap.sh index d99dcd83..5a66d0fc 100644 --- a/vagrant/bootstrap.sh +++ b/vagrant/bootstrap.sh @@ -17,8 +17,6 @@ cd pyaggr3g470r apt-get install -y libxml2-dev libxslt1-dev # installation with pip sudo pip3 install --upgrade -r requirements.txt -# Fix a bug of feedparser (https://code.google.com/p/feedparser/issues/detail?id=384) -sudo pip3 install git+https://code.google.com/p/feedparser/ --upgrade # copy of the default configuration files for vagrant cp vagrant/conf.cfg-sample conf/conf.cfg cd .. -- cgit