feat(worker): don't run with a dedicated user

BREAKING: The worker service no longer uses a dedicated `celery` user to run. The old `celery` user can be removed from the system.
This commit is contained in:
jo 2022-05-05 20:19:31 +02:00 committed by Kyle Robbertze
parent 6d5c58fbcb
commit 8278366899
3 changed files with 12 additions and 17 deletions

View file

@ -55,6 +55,15 @@ The legacy logrotate config filepath was changed from `/etc/logrotate.d/airtime-
sudo rm -f /etc/logrotate.d/airtime-php
```
### Worker user
The worker service no longer uses a dedicated `celery` user to run. The old `celery` user can be removed from the system:
```bash
# Remove the celery user
sudo deluser celery
```
### New configuration schema
The configuration schema was updated.