From f04f772d4c2791a1bc0e36fe8df2dc8d62ea8378 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 16:47:55 +0200 Subject: Adding debian version 1:2.39.2-1.1. Signed-off-by: Daniel Baumann --- debian/git-daemon-run.postinst | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 debian/git-daemon-run.postinst (limited to 'debian/git-daemon-run.postinst') diff --git a/debian/git-daemon-run.postinst b/debian/git-daemon-run.postinst new file mode 100644 index 0000000..41f6d20 --- /dev/null +++ b/debian/git-daemon-run.postinst @@ -0,0 +1,17 @@ +#!/bin/sh +set -e + +#DEBHELPER# + +test "$1" = 'configure' || exit 0 + +getent passwd gitlog >/dev/null || \ + adduser --system --home /nonexistent --no-create-home gitlog +getent passwd gitdaemon >/dev/null || \ + adduser --system --home /nonexistent --no-create-home gitdaemon + +# enable git-daemon service +update-service --add /etc/sv/git-daemon + +# restart git-daemon service if it was running +test -z "$2" || sv -v term git-daemon || : -- cgit v1.2.3