mirror of
https://github.com/YunoHost-Apps/pagure_ynh.git
synced 2024-09-03 19:56:19 +02:00
14 lines
309 B
SYSTEMD
14 lines
309 B
SYSTEMD
|
[Unit]
|
||
|
Description=__APP__ worker for backend git interaction
|
||
|
After=redis.target
|
||
|
|
||
|
[Service]
|
||
|
ExecStart=/usr/bin/celery worker -A pagure.lib.tasks --loglevel=info
|
||
|
Environment="PAGURE_CONFIG=__FINALPATH__/pagure.cfg"
|
||
|
Type=simple
|
||
|
User=__APP__
|
||
|
Group=__APP__
|
||
|
Restart=on-failure
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|