githttp-fs 1.0.2

A git-backed content management database served over HTTP
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

set -e

case "$1" in
    configure)
        adduser --system --disabled-password --disabled-login --home /var/empty \
                --no-create-home --quiet --group githttp-fs
        ;;
esac

#DEBHELPER#

exit 0