Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -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 *
2 changes: 1 addition & 1 deletion debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions debian/python3-patchman.postinst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion etc/patchman/local_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -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': {
Expand Down