From 79ed9bf79160aac8d18650a9c23c0bca80158b86 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Fri, 15 May 2015 08:18:34 +0200 Subject: Fixed some problems with the install script. --- install.sh | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) (limited to 'install.sh') diff --git a/install.sh b/install.sh index e8c1ab1d..19f53b61 100755 --- a/install.sh +++ b/install.sh @@ -5,11 +5,13 @@ # for Python 3. # -sudo apt-get install -y python libpq-dev python-dev python-pip build-essential git +PYTHON_VERSION="3.4" + +sudo apt-get install -y python$PYTHON_VERSION libpq-dev python$PYTHON_VERSION-dev build-essential git sudo apt-get install -y libxml2-dev libxslt1-dev # for lxml sed -i '/psycopg2/d' requirements.txt -sudo pip install --upgrade -r requirements.txt +sudo pip$PYTHON_VERSION install --upgrade -r requirements.txt # Initializes the configuration file cp conf/conf.cfg-sample conf/conf.cfg @@ -19,24 +21,24 @@ sed -i '/database/d' conf/conf.cfg sed -i '/database_url/d' conf/conf.cfg if [ "$1" == postgres ]; then - sudo apt-get install -y postgresql postgresql-server-dev-9.3 postgresql-client - sudo pip install psycopg2 - echo "127.0.0.1:5432:aggregator:pgsqluser:pgsqlpwd" > ~/.pgpass - chmod 700 ~/.pgpass + sudo apt-get install -y postgresql postgresql-server-dev-9.4 postgresql-client + sudo pip$PYTHON_VERSION install psycopg2 + echo "127.0.0.1:5433:aggregator:pgsqluser:pgsqlpwd" > ~/.pgpass + chmod 0600 ~/.pgpass sudo -u postgres createuser pgsqluser --no-superuser --createdb --no-createrole - createdb aggregator --no-password + sudo -u postgres createdb aggregator --no-password echo "ALTER USER pgsqluser WITH ENCRYPTED PASSWORD 'pgsqlpwd';" | sudo -u postgres psql echo "GRANT ALL PRIVILEGES ON DATABASE aggregator TO pgsqluser;" | sudo -u postgres psql # Add configuration lines for PostgreSQL echo '[database]' >> conf/conf.cfg - echo 'database_url = postgres://pgsqluser:pgsqlpwd@127.0.0.1:5432/aggregator' >> conf/conf.cfg + echo 'database_url = postgres://pgsqluser:pgsqlpwd@127.0.0.1:5433/aggregator' >> conf/conf.cfg elif [ "$1" == sqlite ]; then - sudo pip install pysqlite # not working with Python 3! + sudo pip$PYTHON_VERSION install pysqlite # not working with Python 3! # Add configuration lines for SQLite echo '[database]' >> conf/conf.cfg echo 'database_url = sqlite+pysqlite:///pyAggr3g470r.db' >> conf/conf.cfg fi -python manager.py db_empty -python manager.py db_create +python$PYTHON_VERSION manager.py db_empty +python$PYTHON_VERSION manager.py db_create -- cgit