summaryrefslogtreecommitdiffstats
path: root/debian/git-daemon-run.postinst
blob: 41f6d20dd702a90cdbdbdec5e7de37dbb7d4c214 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 || :