| Current Path : /var/lib/dpkg/info/ |
| 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