diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 14:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 14:47:55 +0000 |
commit | f04f772d4c2791a1bc0e36fe8df2dc8d62ea8378 (patch) | |
tree | 6601becfb9eccb5e3361f1f802e96ea7839bfca8 /debian/git-daemon-run.postinst | |
parent | Adding upstream version 1:2.39.2. (diff) | |
download | git-f04f772d4c2791a1bc0e36fe8df2dc8d62ea8378.tar.xz git-f04f772d4c2791a1bc0e36fe8df2dc8d62ea8378.zip |
Adding debian version 1:2.39.2-1.1.debian/1%2.39.2-1.1debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/git-daemon-run.postinst')
-rw-r--r-- | debian/git-daemon-run.postinst | 17 |
1 files changed, 17 insertions, 0 deletions
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 || : |