diff --git a/MANIFEST.in b/MANIFEST.in index 293b1da2..5ea60ab7 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -16,5 +16,7 @@ recursive-include packages * recursive-include repos * recursive-include reports * recursive-include modules * +recursive-include errata * +recursive-include security * recursive-include sbin * recursive-include etc * diff --git a/debian/control b/debian/control index 18e98613..67026269 100644 --- a/debian/control +++ b/debian/control @@ -18,7 +18,7 @@ Depends: ${misc:Depends}, python3 (>= 3.11), python3-django (>= 4.2), python3-djangorestframework, python3-django-filters, python3-debian, python3-rpm, python3-tqdm, python3-defusedxml, python3-pip, python3-tenacity, python3-requests, python3-colorama, python3-magic, python3-humanize, - python3-yaml, libapache2-mod-wsgi-py3, apache2, + python3-yaml, libapache2-mod-wsgi-py3, apache2, sqlite3, celery, python3-celery, python3-django-celery-beat, redis-server, python3-redis, python3-git, python3-django-taggit Suggests: python3-mysqldb, python3-psycopg2, python3-pymemcache, memcached diff --git a/debian/python3-patchman.postinst b/debian/python3-patchman.postinst index 94983068..9fa07a29 100644 --- a/debian/python3-patchman.postinst +++ b/debian/python3-patchman.postinst @@ -13,6 +13,7 @@ if [ "$1" = "configure" ] ; then apache2_invoke enconf patchman.conf adduser --system --group patchman-celery + usermod -a -G www-data patchman-celery patchman-set-secret-key chown www-data /etc/patchman/local_settings.py diff --git a/etc/patchman/local_settings.py b/etc/patchman/local_settings.py index a8269f5d..33a7d52f 100644 --- a/etc/patchman/local_settings.py +++ b/etc/patchman/local_settings.py @@ -39,7 +39,7 @@ DAYS_WITHOUT_REPORT = 14 # Whether to run patchman under the gunicorn web server -RUN_GUNICORN = True +RUN_GUNICORN = False CACHES = { 'default': {