diff options
| -rwxr-xr-x | install/ishtar-install | 58 | 
1 files changed, 31 insertions, 27 deletions
| diff --git a/install/ishtar-install b/install/ishtar-install index 4e210d9a5..a45fcd8ba 100755 --- a/install/ishtar-install +++ b/install/ishtar-install @@ -407,32 +407,36 @@ EOF                  if [ "$lsb_dist" == 'debian' ]; then                      ( set -x; $sh_c 'sleep 3; apt-get install -y -q \ -                          python3-django python3-psycopg2 \ -                          python3-django-registration \ -                          python3-pil \ -                          python3-xmltodict python3-requests \ -                          python3-pyqrcode python3-png \ -                          python3-gdal \ -                          python3-memcache \ -                          python3-djangorestframework \ -                          python3-tidylib \ -                          python3-lxml \ -                          python3-django-extra-views \ -                          python3-bs4 \ -                          python3-markdown \ -                          python3-ajax-select \ -                          python3-django-compressor \ -                          python3-django-formtools \ -                          python3-unidecode \ -                          python3-django-extensions \ -                          python3-html5lib python3-pdfrw \  # weasyprint -                          python3-cairosvg \ # weasyprint -                          python3-cairocffi python3-cffi libpangocairo-1.0-0 \ # weasyprint -                          python3-cssselect2 python3-tinycss2 \ # weasyprint -                          python3-pyphen python3-defusedxml \ # weasyprint -                          python3-markdown2 python3-jinja2 \ # secretary -                          gettext memcached graphviz pandoc' ) -                          # python3-reportlab ? +                       python3-bs4 \ +                       python3-gdal \ +                       python3-lxml \ +                       python3-markdown \ +                       python3-memcache \ +                       python3-psycopg2 \ +                       python3-pil \ +                       python3-png \ +                       python3-pyqrcode \ +                       python3-requests \ +                       python3-tidylib \ +                       python3-unidecode \ +                       python3-xmltodict \ +                       python3-django-simple-history \ +                       python3-secretary \ +                       python3-weasyprint \ +                       python3-django \ +                       python3-ajax-select \ +                       python3-djangorestframework \ +                       python3-django-compressor \ +                       python3-django-extensions \ +                       python3-django-extra-views \ +                       python3-django-formtools \ +                       python3-django-registration \ +                       apg \ +                       gettext \ +                       locales \ +                       memcached \ +                       graphviz \ +                       pandoc' )                  fi                  if [ "$install_libreoffice" == 'yes' ]; then @@ -447,7 +451,7 @@ EOF                  if [ "$install_celery" == 'yes' ]; then                      ( set -x; $sh_c 'sleep 3; apt-get --no-install-recommends install -y -q \                            rabbitmq-server' ) -                    ( set -x; $sh_c 'sleep 3; apt-get install -y -q python3-celery' ) +                    ( set -x; $sh_c 'sleep 3; apt-get install -y -q python3-celery python-celery-common' )                      mkdir -p /var/log/celery/                      mkdir -p /var/run/celery/                      chown www-data:www-data /var/log/celery/ /var/run/celery/ | 
