postinst is in courier-authdaemon 0.66.4-3build1.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | #!/bin/sh -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
# Automatically added by dh_installinit
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ]; then
# In case this system is running systemd, we need to ensure that all
# necessary tmpfiles (if any) are created before starting.
if [ -d /run/systemd/system ] ; then
systemd-tmpfiles --create /usr/lib/tmpfiles.d/courier-authdaemon.conf >/dev/null || true
fi
fi
# End automatically added section
# Automatically added by dh_installinit
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ]; then
if [ -x "/etc/init.d/courier-authdaemon" ]; then
update-rc.d courier-authdaemon defaults >/dev/null
fi
if [ -x "/etc/init.d/courier-authdaemon" ] || [ -e "/etc/init/courier-authdaemon.conf" ]; then
invoke-rc.d courier-authdaemon start || exit $?
fi
fi
# End automatically added section
exit 0
|