1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 11:42:08 +00:00
iiab/roles/lokole/templates/celery.service.j2

15 lines
349 B
Text
Raw Normal View History

2020-09-02 07:51:57 +00:00
[Unit]
Description=Celery service
After=network.target
After=lokole.service
Before=celerybeat.service
2020-09-02 07:51:57 +00:00
[Service]
Type=simple
ExecStart={{ lokole_venv }}/bin/celery --app=opwen_email_client.webapp.tasks worker --loglevel=info --concurrency=2
2020-09-02 07:51:57 +00:00
ExecReload=/bin/kill -s HUP $MAINPID
ExecStop=/bin/kill TERM $MAINPID
[Install]
WantedBy=multi-user.target