summaryrefslogtreecommitdiff
path: root/install
diff options
context:
space:
mode:
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
commit287ca2f531cdf257245b0ea84ba6a97e4148c095 (patch)
treeeebcdc863fc01c44c47550d34bf326a0eaa7ce50 /install
parentd2a779dd12537bf53bf025868189e4d5c2efae31 (diff)
downloadIshtar-287ca2f531cdf257245b0ea84ba6a97e4148c095.tar.bz2
Ishtar-287ca2f531cdf257245b0ea84ba6a97e4148c095.zip
Adapt install script with missing dependencies
Diffstat (limited to 'install')
-rwxr-xr-xinstall/ishtar-install16
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 \