postinst is in doodle 0.7.0-8.
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | #!/bin/sh
CRON="/etc/cron.daily/doodle"
set -e
case "${1}" in
configure)
if ! getent group doodle > /dev/null 2>&1
then
addgroup --system doodle
fi
chown root:doodle /usr/bin/doodle
chmod g+s /usr/bin/doodle
if [ ! -d /var/lib/doodle ]
then
mkdir -p /var/lib/doodle
fi
chown root:doodle /var/lib/doodle -R
chmod 0750 /var/lib/doodle
if [ -e /var/lib/doodle/doodle.db ]
then
chmod 0660 /var/lib/doodle/doodle.db
else
cat << EOF
WARNING: You should run '${CRON}' as root. doodle will not work
properly until you do or until it is run by cron (it is daily).
EOF
fi
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`${1}'" >&2
exit 1
;;
esac
exit 0
|