taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit 0f6749e220c43a3b551b8829970a970c0e6df379
parent 128130a12ddb22bc7dfe4c6efef10f62bfb4e929
Author: Devan Carpenter <devan@taler.net>
Date:   Wed,  7 Jun 2023 10:29:38 -0400

systemd: add service for container buildbot-worker

Diffstat:
Asystemd-services/buildbot-worker-container.service | 13+++++++++++++
1 file changed, 13 insertions(+), 0 deletions(-)

diff --git a/systemd-services/buildbot-worker-container.service b/systemd-services/buildbot-worker-container.service @@ -0,0 +1,13 @@ +[Unit] +Description=Buildbot worker service for container worker +AssertPathExists=/home/container-worker/worker + +[Service] +WorkingDirectory=/home/container-worker/ +ExecStart=/usr/bin/buildbot-worker start --nodaemon worker +ExecReload=/usr/bin/buildbot-worker restart --nodaemon worker +ExecStop=/usr/bin/buildbot-worker stop worker +Restart=always + +[Install] +WantedBy=default.target