diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 09:49:37 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 09:49:37 +0000 |
commit | 43fb36463ac1df398f62397b36e570aa9af94d91 (patch) | |
tree | a69979c10da617a3df2d55ecde5503f1c0ec1126 /debian/git-daemon-run.postinst | |
parent | Adding upstream version 1:2.30.2. (diff) | |
download | git-debian.tar.xz git-debian.zip |
Adding debian version 1:2.30.2-1+deb11u2.debian/1%2.30.2-1+deb11u2debian
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 | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/debian/git-daemon-run.postinst b/debian/git-daemon-run.postinst new file mode 100644 index 0000000..00a4d38 --- /dev/null +++ b/debian/git-daemon-run.postinst @@ -0,0 +1,23 @@ +#!/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 + +test -z "$2" || dpkg --compare-versions "$2" gt '1:1.5.4.2-1' || { + update-service --remove /etc/sv/git-daemon 2>/dev/null || : + sleep 6 + set "$1" +} + +# 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 || : |