summaryrefslogtreecommitdiff
path: root/systemd-services
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-11-01 12:57:49 +0100
committerFlorian Dold <florian.dold@gmail.com>2019-11-01 12:57:49 +0100
commit79f4c1660dc3f1aebe78f83868ec8fc3e167ab90 (patch)
treecd5a01590fe57f581a4c92a01e1d78889541926f /systemd-services
parent83d9f7f8baa2fb3945da120f5893401725e0f93b (diff)
downloaddeployment-79f4c1660dc3f1aebe78f83868ec8fc3e167ab90.tar.gz
deployment-79f4c1660dc3f1aebe78f83868ec8fc3e167ab90.tar.bz2
deployment-79f4c1660dc3f1aebe78f83868ec8fc3e167ab90.zip
move systemd services to directory
Diffstat (limited to 'systemd-services')
-rw-r--r--systemd-services/buildbot-master.service13
-rw-r--r--systemd-services/buildbot-worker-demo-auditor.service13
-rw-r--r--systemd-services/buildbot-worker-demo-topper.service13
-rw-r--r--systemd-services/buildbot-worker-doc.service13
-rw-r--r--systemd-services/buildbot-worker-lcov.service13
-rw-r--r--systemd-services/buildbot-worker-sites.service13
-rw-r--r--systemd-services/buildbot-worker-taler-demo-healthcheck.service13
-rw-r--r--systemd-services/buildbot-worker-taler-test-healthcheck.service13
-rw-r--r--systemd-services/buildbot-worker-test-auditor.service13
-rw-r--r--systemd-services/buildbot-worker-test-topper.service13
-rw-r--r--systemd-services/buildbot-worker-wallet.service13
11 files changed, 143 insertions, 0 deletions
diff --git a/systemd-services/buildbot-master.service b/systemd-services/buildbot-master.service
new file mode 100644
index 0000000..aadb428
--- /dev/null
+++ b/systemd-services/buildbot-master.service
@@ -0,0 +1,13 @@
+[Unit]
+Description=Buildbot master service
+AssertPathExists=/home/buildbot-master/master
+
+[Service]
+WorkingDirectory=/home/buildbot-master/
+ExecStart=/usr/local/bin/buildbot start --nodaemon master
+ExecReload=/usr/local/bin/buildbot sighup master
+ExecStop=/usr/local/bin/buildbot stop master
+Restart=always
+
+[Install]
+WantedBy=default.target
diff --git a/systemd-services/buildbot-worker-demo-auditor.service b/systemd-services/buildbot-worker-demo-auditor.service
new file mode 100644
index 0000000..1151b89
--- /dev/null
+++ b/systemd-services/buildbot-worker-demo-auditor.service
@@ -0,0 +1,13 @@
+[Unit]
+Description=Buildbot worker service for demo-auditor
+AssertPathExists=/home/demo-auditor/worker
+
+[Service]
+WorkingDirectory=/home/demo-auditor/
+ExecStart=/usr/local/bin/buildbot-worker start --nodaemon worker
+ExecReload=/usr/local/bin/buildbot-worker restart --nodaemon worker
+ExecStop=/usr/local/bin/buildbot-worker stop worker
+Restart=always
+
+[Install]
+WantedBy=default.target
diff --git a/systemd-services/buildbot-worker-demo-topper.service b/systemd-services/buildbot-worker-demo-topper.service
new file mode 100644
index 0000000..ff3393b
--- /dev/null
+++ b/systemd-services/buildbot-worker-demo-topper.service
@@ -0,0 +1,13 @@
+[Unit]
+Description=Buildbot worker service for demo-topper
+AssertPathExists=/home/demo-reserve-topper/worker
+
+[Service]
+WorkingDirectory=/home/demo-reserve-topper/
+ExecStart=/usr/local/bin/buildbot-worker start --nodaemon worker
+ExecReload=/usr/local/bin/buildbot-worker restart --nodaemon worker
+ExecStop=/usr/local/bin/buildbot-worker stop worker
+Restart=always
+
+[Install]
+WantedBy=default.target
diff --git a/systemd-services/buildbot-worker-doc.service b/systemd-services/buildbot-worker-doc.service
new file mode 100644
index 0000000..e4f3a33
--- /dev/null
+++ b/systemd-services/buildbot-worker-doc.service
@@ -0,0 +1,13 @@
+[Unit]
+Description=Buildbot worker service for doc
+AssertPathExists=/home/docbuilder/worker
+
+[Service]
+WorkingDirectory=/home/docbuilder/
+ExecStart=/usr/local/bin/buildbot-worker start --nodaemon worker
+ExecReload=/usr/local/bin/buildbot-worker restart --nodaemon worker
+ExecStop=/usr/local/bin/buildbot-worker stop worker
+Restart=always
+
+[Install]
+WantedBy=default.target
diff --git a/systemd-services/buildbot-worker-lcov.service b/systemd-services/buildbot-worker-lcov.service
new file mode 100644
index 0000000..d182f5f
--- /dev/null
+++ b/systemd-services/buildbot-worker-lcov.service
@@ -0,0 +1,13 @@
+[Unit]
+Description=Buildbot worker service for lcov
+AssertPathExists=/home/lcovworker/worker
+
+[Service]
+WorkingDirectory=/home/lcovworker/
+ExecStart=/usr/local/bin/buildbot-worker start --nodaemon worker
+ExecReload=/usr/local/bin/buildbot-worker restart --nodaemon worker
+ExecStop=/usr/local/bin/buildbot-worker stop worker
+Restart=always
+
+[Install]
+WantedBy=default.target
diff --git a/systemd-services/buildbot-worker-sites.service b/systemd-services/buildbot-worker-sites.service
new file mode 100644
index 0000000..ea8dab0
--- /dev/null
+++ b/systemd-services/buildbot-worker-sites.service
@@ -0,0 +1,13 @@
+[Unit]
+Description=Buildbot worker service for sites
+AssertPathExists=/home/taler-websites/worker
+
+[Service]
+WorkingDirectory=/home/taler-websites/
+ExecStart=/usr/local/bin/buildbot-worker start --nodaemon worker
+ExecReload=/usr/local/bin/buildbot-worker restart --nodaemon worker
+ExecStop=/usr/local/bin/buildbot-worker stop worker
+Restart=always
+
+[Install]
+WantedBy=default.target
diff --git a/systemd-services/buildbot-worker-taler-demo-healthcheck.service b/systemd-services/buildbot-worker-taler-demo-healthcheck.service
new file mode 100644
index 0000000..ce9ab42
--- /dev/null
+++ b/systemd-services/buildbot-worker-taler-demo-healthcheck.service
@@ -0,0 +1,13 @@
+[Unit]
+Description=Buildbot worker service for taler-demo-healthcheck
+AssertPathExists=/home/taler-demo-healthcheck/worker
+
+[Service]
+WorkingDirectory=/home/taler-demo-healthcheck/
+ExecStart=/usr/local/bin/buildbot-worker start --nodaemon worker
+ExecReload=/usr/local/bin/buildbot-worker restart --nodaemon worker
+ExecStop=/usr/local/bin/buildbot-worker stop worker
+Restart=always
+
+[Install]
+WantedBy=default.target
diff --git a/systemd-services/buildbot-worker-taler-test-healthcheck.service b/systemd-services/buildbot-worker-taler-test-healthcheck.service
new file mode 100644
index 0000000..1973640
--- /dev/null
+++ b/systemd-services/buildbot-worker-taler-test-healthcheck.service
@@ -0,0 +1,13 @@
+[Unit]
+Description=Buildbot worker service for taler-test-healthcheck
+AssertPathExists=/home/taler-test-healthcheck/worker
+
+[Service]
+WorkingDirectory=/home/taler-test-healthcheck/
+ExecStart=/usr/local/bin/buildbot-worker start --nodaemon worker
+ExecReload=/usr/local/bin/buildbot-worker restart --nodaemon worker
+ExecStop=/usr/local/bin/buildbot-worker stop worker
+Restart=always
+
+[Install]
+WantedBy=default.target
diff --git a/systemd-services/buildbot-worker-test-auditor.service b/systemd-services/buildbot-worker-test-auditor.service
new file mode 100644
index 0000000..6cb1429
--- /dev/null
+++ b/systemd-services/buildbot-worker-test-auditor.service
@@ -0,0 +1,13 @@
+[Unit]
+Description=Buildbot worker service for test-auditor
+AssertPathExists=/home/test-auditor/worker
+
+[Service]
+WorkingDirectory=/home/test-auditor/
+ExecStart=/usr/local/bin/buildbot-worker start --nodaemon worker
+ExecReload=/usr/local/bin/buildbot-worker restart --nodaemon worker
+ExecStop=/usr/local/bin/buildbot-worker stop worker
+Restart=always
+
+[Install]
+WantedBy=default.target
diff --git a/systemd-services/buildbot-worker-test-topper.service b/systemd-services/buildbot-worker-test-topper.service
new file mode 100644
index 0000000..e45823c
--- /dev/null
+++ b/systemd-services/buildbot-worker-test-topper.service
@@ -0,0 +1,13 @@
+[Unit]
+Description=Buildbot worker service for test-topper
+AssertPathExists=/home/test-reserve-topper/worker
+
+[Service]
+WorkingDirectory=/home/test-reserve-topper/
+ExecStart=/usr/local/bin/buildbot-worker start --nodaemon worker
+ExecReload=/usr/local/bin/buildbot-worker restart --nodaemon worker
+ExecStop=/usr/local/bin/buildbot-worker stop worker
+Restart=always
+
+[Install]
+WantedBy=default.target
diff --git a/systemd-services/buildbot-worker-wallet.service b/systemd-services/buildbot-worker-wallet.service
new file mode 100644
index 0000000..f86b349
--- /dev/null
+++ b/systemd-services/buildbot-worker-wallet.service
@@ -0,0 +1,13 @@
+[Unit]
+Description=Buildbot worker service for wallet
+AssertPathExists=/home/walletbuilder/worker
+
+[Service]
+WorkingDirectory=/home/walletbuilder/
+ExecStart=/usr/local/bin/buildbot-worker start --nodaemon worker
+ExecReload=/usr/local/bin/buildbot-worker restart --nodaemon worker
+ExecStop=/usr/local/bin/buildbot-worker stop worker
+Restart=always
+
+[Install]
+WantedBy=default.target