summaryrefslogtreecommitdiff
path: root/roles/repo_service/files/repo_service.service
diff options
context:
space:
mode:
authorChristian Franke <nobody@nowhere.ws>2015-10-26 20:38:25 +0100
committerChristian Franke <nobody@nowhere.ws>2015-10-26 20:38:25 +0100
commitf38450f9f2037244300082f3e4211b790ac87058 (patch)
tree074ffa7d0512e099742641df8065d7b4139a6e99 /roles/repo_service/files/repo_service.service
parent4e5034f57b54f1a5052fd859d3419002a477e628 (diff)
Assorted changesHEADmaster
- add hooks between webserver and gitserver: git->website and wiki->git work now, git->wiki is still missing, https://ikiwiki.info/tips/Hosting_Ikiwiki_and_master_git_repository_on_different_machines/ should contain the right info for that - actually configure repo_service - replace LDAP auth with dummy password auth for now
Diffstat (limited to 'roles/repo_service/files/repo_service.service')
-rw-r--r--roles/repo_service/files/repo_service.service13
1 files changed, 13 insertions, 0 deletions
diff --git a/roles/repo_service/files/repo_service.service b/roles/repo_service/files/repo_service.service
new file mode 100644
index 0000000..15c40ea
--- /dev/null
+++ b/roles/repo_service/files/repo_service.service
@@ -0,0 +1,13 @@
+[Unit]
+Description=repository creation service
+After=network.target
+
+[Service]
+User=repo_service
+Group=repo_service
+WorkingDirectory=/var/lib/repo_service/src/backend
+ExecStart=/usr/bin/python /var/lib/repo_service/src/backend/repo_service.py
+Restart=on-failure
+
+[Install]
+WantedBy=multi-user.target