#!/bin/sh set -e if [ "$1" = configure ]; then if command -v systemd-sysusers >/dev/null 2>&1; then systemd-sysusers bongo-user.conf else if ! getent group bongopostdrop >/dev/null 2>&1; then addgroup --system bongopostdrop fi if ! getent passwd bongo >/dev/null 2>&1; then adduser --system --group --home /var/lib/bongo \ --no-create-home bongo fi adduser bongo bongopostdrop fi chown root:bongopostdrop /usr/sbin/bongopostdrop chmod 2755 /usr/sbin/bongopostdrop fi #DEBHELPER# exit 0