20 lines
451 B
SYSTEMD
20 lines
451 B
SYSTEMD
|
|
[Unit]
|
||
|
|
Description=Haskell Build Agent — State Hub registration + SSH reverse tunnel
|
||
|
|
Documentation=https://github.com/tegwick/the-custodian
|
||
|
|
After=network-online.target
|
||
|
|
Wants=network-online.target
|
||
|
|
|
||
|
|
[Service]
|
||
|
|
Type=simple
|
||
|
|
User=build
|
||
|
|
EnvironmentFile=/etc/build-agent.env
|
||
|
|
ExecStart=/usr/local/bin/build-agent
|
||
|
|
Restart=on-failure
|
||
|
|
RestartSec=30
|
||
|
|
StandardOutput=journal
|
||
|
|
StandardError=journal
|
||
|
|
SyslogIdentifier=build-agent
|
||
|
|
|
||
|
|
[Install]
|
||
|
|
WantedBy=multi-user.target
|