pib-service 0.15.2

Politik im Blick service for serving public governmental information in OParl format, with some extra addon information
#! /bin/sh
set -e

case "$1" in
    configure)
        # create _pib-service group if not already present
        if ! getent group _pib-service > /dev/null; then
            addgroup --quiet --system _pib-service
        fi

    if ! getent passwd _pib-service >/dev/null; then
        # add unprivileged user for running the service
        adduser --force-badname --system --home /var/lib/pib-service --quiet _pib-service || true
    fi

        ;;
    abort-upgrade|abort-remove|abort-deconfigure)
    ;;

    *)
        echo "postinst called with unknown argument \`$1'" >&2
        exit 0
    ;;
esac

#DEBHELPER#