diff options
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 \ |