/lib/systemd/system/debci-worker@.service is in debci-worker 1.7.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | # systemd service template for individual debci-worker instances
[Unit]
Description=debci-worker instance %i
Documentation=https://ci.debian.net/doc/
PartOf=debci-worker.service
After=rabbitmq-server.service network-online.target
ReloadPropagatedFrom=debci-worker.service
[Service]
TasksMax=infinity
LimitNPROC=infinity
User=debci
Group=debci
WorkingDirectory=/usr/share/debci
ExecStart=/usr/share/debci/bin/debci worker
Restart=on-failure
RestartSec=5
[Install]
WantedBy=multi-user.target
|