Your IP : 216.73.216.224


Current Path : /var/lib/dpkg/info/
Upload File :
Current File : /var/lib/dpkg/info/courier-authlib.postinst

#!/bin/sh

set -e

if [ "$1" = "configure" ]; then
    # create courier user and group
    if ! getent passwd courier > /dev/null; then
	adduser --quiet --system --group --no-create-home --home /var/lib/courier courier
    fi
fi



exit 0