postinst is in pollinate 4.7-0ubuntu1.
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 | #!/bin/sh -e
PKG="pollinate"
# Create the user if necessary
mkdir -p /var/cache/$PKG
if ! getent passwd $PKG >/dev/null; then
adduser --disabled-password --quiet --system --home /var/cache/$PKG --ingroup daemon $PKG --shell /bin/false
fi
chown -R $PKG /var/cache/$PKG
rm -f /var/cache/$PKG/tag
# Automatically added by dh_installinit
if [ -x "/etc/init.d/pollinate" ] || [ -e "/etc/init/pollinate.conf" ]; then
if [ ! -e "/etc/init/pollinate.conf" ]; then
update-rc.d pollinate defaults >/dev/null
fi
invoke-rc.d pollinate start || exit $?
fi
# End automatically added section
# Automatically added by dh_installinit
update-rc.d -f pollinate remove >/dev/null || exit $?
# End automatically added section
|