aboutsummaryrefslogtreecommitdiff
path: root/vagrant/bootstrap.sh
blob: 867553f2cff2a3e5ca955acc576c1c3e012b71a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/bin/sh

apt-get update
apt-get upgrade
apt-get install -y python python-pip git

# Clone the source code of pyAggr3g470r
git clone https://bitbucket.org/cedricbonhomme/pyaggr3g470r.git
if [ $? -ne 0 ]; then
    echo "\nERROR: unable to clone the git repository\n"
    exit 1;
fi

# Install all requierements
cd pyaggr3g470r
apt-get install -y libxml2-dev libxslt1-dev
pip install --upgrade -r requirements.txt
cp conf/conf.cfg-sample conf/conf.cfg
cd ..

# Installation of PostgreSQL
apt-get install -y postgresql postgresql-server-dev-9.3 postgresql-client

# Configuration of the database
echo "127.0.0.1:5432:aggregator:vagrant:xxYzToW42" > .pgpass
chmod 700 .pgpass
sudo -u postgres createuser vagrant --no-superuser --createdb --no-createrole
createdb aggregator --no-password
echo "ALTER USER vagrant WITH ENCRYPTED PASSWORD 'xxYzToW42';" | sudo -u postgres psql
echo "GRANT ALL PRIVILEGES ON DATABASE aggregator TO vagrant;" | sudo -u postgres psql

# Initializes the database
cd pyaggr3g470r
python db_create.py

# start pyAggr3g470r at startup
echo "#!/bin/sh -e" > /etc/rc.local
echo "su vagrant python runserver.py" >> /etc/rc.local
echo "exit 0" >> /etc/rc.local
chmod 755 /etc/rc.local

# Start the application
chown -R vagrant:vagrant ..
/etc/init.d/rc.local start
bgstack15