Avoid backslash multiline syntax

This commit is contained in:
Rafa de la Torre 2016-08-08 16:48:42 +02:00
parent 45653a850e
commit f2b5c788c0

View File

@ -23,12 +23,11 @@ before_install:
- sudo apt-get -y --no-install-recommends install python-scikits-learn=0.14.1-3-cdb2
# Install postgres db and build deps
- sudo apt-get -y install \
postgresql-9.5 \
postgresql-server-dev-9.5 \
postgresql-plpython-9.5 \
postgresql-9.5-postgis-2.2 \
postgresql-9.5-postgis-scripts
- sudo apt-get -y install postgresql-9.5
- sudo apt-get -y install postgresql-server-dev-9.5
- sudo apt-get -y install postgresql-plpython-9.5
- sudo apt-get -y install postgresql-9.5-postgis-2.2
- sudo apt-get -y install postgresql-9.5-postgis-scripts
# configure it to accept local connections from postgres
- echo -e "# TYPE DATABASE USER ADDRESS METHOD \nlocal all postgres trust\nlocal all all trust\nhost all all 127.0.0.1/32 trust" \