public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: Stefan Schantl <stefan.schantl@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH] git: Add systemd file for git-daemon
Date: Fri, 13 Jan 2017 12:52:31 +0100	[thread overview]
Message-ID: <20170113115231.2335-1-stefan.schantl@ipfire.org> (raw)

[-- Attachment #1: Type: text/plain, Size: 2210 bytes --]

Add systemd unit file for a socket-based activation
of git-deamon to export the git repositories.

Fixes #10983.

Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
 git/git.nm               | 23 ++++++++++++++++++++++-
 git/systemd/git.socket   |  9 +++++++++
 git/systemd/git(a).service |  8 ++++++++
 3 files changed, 39 insertions(+), 1 deletion(-)
 create mode 100644 git/systemd/git.socket
 create mode 100644 git/systemd/git(a).service

diff --git a/git/git.nm b/git/git.nm
index 13f05db..9ad9bbe 100644
--- a/git/git.nm
+++ b/git/git.nm
@@ -5,7 +5,7 @@
 
 name       = git
 version    = 2.6.3
-release    = 2
+release    = 3
 
 groups     = Development/Tools
 url        = http://git-scm.com/
@@ -114,6 +114,27 @@ packages
 			%{gitcoredir}/git-daemon
 			%{mandir}/man1/git-daemon*
 			%{sharedstatedir}/git
+			%{unitdir}/git(a).service
+			%{unitdir}/git.socket
+		end
+
+		script postin
+			systemctl daemon-reload >/dev/null 2>&1 || :
+		end
+
+		script preun
+			systemctl --no-reload disable git.socket >/dev/null 2>&1 || :
+			systemctl stop git.socket >/dev/null 2>&1 || :
+			systemctl stop git(a).service >/dev/null 2>&1 || :
+		end
+
+		script postun
+			systemctl daemon-reload >/dev/null 2>&1 || :
+		end
+
+		script postup
+			systemctl daemon-reload >/dev/null 2>&1 || :
+			systemctl try-restart git.socket >/dev/null 2>&1 || :
 		end
 	end
 
diff --git a/git/systemd/git.socket b/git/systemd/git.socket
new file mode 100644
index 0000000..3dec01d
--- /dev/null
+++ b/git/systemd/git.socket
@@ -0,0 +1,9 @@
+[Unit]
+Description=Git Activation Socket
+
+[Socket]
+ListenStream=9418
+Accept=true
+
+[Install]
+WantedBy=sockets.target
diff --git a/git/systemd/git(a).service b/git/systemd/git(a).service
new file mode 100644
index 0000000..185ff25
--- /dev/null
+++ b/git/systemd/git(a).service
@@ -0,0 +1,8 @@
+[Unit]
+Description=Git Repositories Server Daemon
+Documentation=man:git-daemon(1)
+
+[Service]
+User=nobody
+ExecStart=-/usr/libexec/git-core/git-daemon --base-path=/var/lib/git --export-all --user-path=public_git --syslog --inetd --verbose
+StandardInput=socket
-- 
2.9.3


                 reply	other threads:[~2017-01-13 11:52 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20170113115231.2335-1-stefan.schantl@ipfire.org \
    --to=stefan.schantl@ipfire.org \
    --cc=development@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox