aboutsummaryrefslogtreecommitdiff
path: root/vagrant/bootstrap.sh
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-02-09 16:53:00 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-02-09 16:53:00 +0100
commitf630f478b771d0c7a46758f32c79f7d1ccd118ec (patch)
treed9435a909cebacb008b757f0c747c2122673a869 /vagrant/bootstrap.sh
parentHeroku stack (diff)
downloadnewspipe-f630f478b771d0c7a46758f32c79f7d1ccd118ec.tar.gz
newspipe-f630f478b771d0c7a46758f32c79f7d1ccd118ec.tar.bz2
newspipe-f630f478b771d0c7a46758f32c79f7d1ccd118ec.zip
Misc changes for the Vagrant configuration.
Diffstat (limited to 'vagrant/bootstrap.sh')
-rw-r--r--vagrant/bootstrap.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/vagrant/bootstrap.sh b/vagrant/bootstrap.sh
index 79697cf7..68b0e030 100644
--- a/vagrant/bootstrap.sh
+++ b/vagrant/bootstrap.sh
@@ -17,12 +17,14 @@ cd pyaggr3g470r
apt-get install -y libxml2-dev libxslt1-dev
# installation with pip
sudo pip3 install --upgrade -r requirements.txt
+sudo pip3 uninstall feedparser
+sudo apt-get install -y python3-feedparser
# copy of the default configuration files for vagrant
cp vagrant/conf.cfg-sample conf/conf.cfg
cd ..
# Installation of PostgreSQL
-apt-get install -y postgresql postgresql-server-dev-9.3 postgresql-client
+apt-get install -y postgresql postgresql-server-dev-9.4 postgresql-client
# Configuration of the database
echo "127.0.0.1:5432:aggregator:vagrant:xxYzToW42" > .pgpass
bgstack15