diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-06-28 15:59:48 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-06-28 15:59:48 +0200 |
commit | 67bead3b85bc1d8070027785266dc5a92c3be4e3 (patch) | |
tree | eebcdc863fc01c44c47550d34bf326a0eaa7ce50 /install | |
parent | 174152c9ccf59023b306f3e2ebb4a937b0041853 (diff) | |
download | Ishtar-67bead3b85bc1d8070027785266dc5a92c3be4e3.tar.bz2 Ishtar-67bead3b85bc1d8070027785266dc5a92c3be4e3.zip |
Adapt install script with missing dependencies
Diffstat (limited to 'install')
-rwxr-xr-x | install/ishtar-install | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/install/ishtar-install b/install/ishtar-install index d189309fc..f9c841cb6 100755 --- a/install/ishtar-install +++ b/install/ishtar-install @@ -317,6 +317,16 @@ EOF echo ""; ( set -x; $sh_c 'sleep 3; apt-get install -y -q python-pip' ) fi + + echo "-------------------------------------------------------------------------------"; + cecho y "Installing dnsmasq..."; + echo ""; + ( set -x; $sh_c 'sleep 3; apt-get install -y -q dnsmasq' ) + + echo "-------------------------------------------------------------------------------"; + cecho y "Installing python-setuptools..."; + echo ""; + ( set -x; $sh_c 'sleep 3; apt-get install -y -q python-setuptools python-wheel' ) if [ "$webserver" == 'nginx' ]; then echo "-------------------------------------------------------------------------------"; cecho y "Installing nginx and uwsgi..."; @@ -403,7 +413,7 @@ EOF cecho y "Installing postgresql" echo "" POSTGIS=postgresql-9.6-postgis-2.3 - ( set -x; $sh_c 'sleep 3; apt-get install -y -q postgresql '$POSTGIS ) + ( set -x; $sh_c 'sleep 3; apt-get install -y -q postgresql' $POSTGIS $POSTGIS'-scripts' ) fi echo "-------------------------------------------------------------------------------"; cecho y "Installing Ishtar dependencies" @@ -413,7 +423,7 @@ EOF ( set -x; $sh_c 'sleep 3; apt-get install -t stretch-backports -y -q python-django' ) ( set -x; $sh_c 'sleep 3; apt-get install -y -q \ python-django-registration libpangocairo-1.0-0 python-requests \ - python-bs4 python-cffi python-django-compressor pandoc dnsmasq \ + python-bs4 python-cffi python-django-compressor pandoc libjs-jquery\ python-tidylib python-lxml python-imaging python-html5lib \ python-psycopg2 python-gdal gettext python-unicodecsv memcached \ python-django-extra-views python-memcache python-dbf python-markdown \ @@ -427,7 +437,7 @@ EOF django-extensions==1.7.4' ) ( set -x; $sh_c 'sleep 3; apt-get install -y -q \ libpangocairo-1.0-0 python-requests \ - python-bs4 python-cffi \ + python-bs4 python-cffi pandoc libjs-jquery \ python-tidylib python-lxml python-imaging python-html5lib \ python-psycopg2 python-gdal gettext python-unicodecsv memcached \ python-memcache python-dbf python-markdown \ |