From 569c64a520347f1cd85788dc1fb20d3b0a5c666e Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Thu, 26 Mar 2015 08:01:29 +0100 Subject: Updated Vagrant bootstrap file. --- vagrant/bootstrap.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'vagrant/bootstrap.sh') diff --git a/vagrant/bootstrap.sh b/vagrant/bootstrap.sh index 1d931cf8..927a39b2 100644 --- a/vagrant/bootstrap.sh +++ b/vagrant/bootstrap.sh @@ -11,6 +11,9 @@ if [ $? -ne 0 ]; then exit 1; fi +# Installation of PostgreSQL +apt-get install -y postgresql postgresql-server-dev-9.4 postgresql-client + # Install all Python requierements cd pyaggr3g470r # For lxml @@ -25,9 +28,6 @@ sudo pip3 install feedparser==5.1.2 cp vagrant/conf.cfg-sample conf/conf.cfg cd .. -# Installation of PostgreSQL -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 chmod 700 .pgpass @@ -39,7 +39,8 @@ echo "GRANT ALL PRIVILEGES ON DATABASE aggregator TO vagrant;" | sudo -u postgre # Initializes the database cd pyaggr3g470r chown -R vagrant:vagrant . -sudo -u vagrant python3 db_create.py +sudo -u vagrant python3 manager.py db_empty +sudo -u vagrant python3 manager.py db_create # start pyAggr3g470r at startup echo "#!/bin/sh -e" > /etc/rc.local -- cgit