postinst is in cron 3.0pl1-120ubuntu3.
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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | #!/bin/sh
set -e
crondir="/var/spool/cron"
# LEGACY: This hasn't been relevant to Debian cron since the last Millenium,
# but we keep it here to preserve the upgrade path...
# Copy existing allow/deny files
pausemessage="F"
for fname in allow deny ; do
if [ -f $crondir/$fname ] ; then
if [ ! -f $/etc/cron.$fname ] ; then
mv $crondir/$fname /etc/cron.$fname
echo " "
echo "Moving $crondir/$fname to /etc/cron.$fname to comply with Debian policy"
pausemessage="T"
else
echo " "
echo "Warning:"
echo "Both $crondir/$fname and /etc/cron.$fname exist -- cron will"
echo "use /etc/cron.$fname"
pausemessage="T"
fi
fi
done
# Conffile has become obsolete
dpkg-maintscript-helper rm_conffile /etc/cron.monthly/standard "3.0pl1-113" -- "$@"
# If dpkg-maintscript-helper renames it instead of removing it because it has
# local modifications, we must rename it back to a valid name, or crond
# will not accept it. Thanks to Raphaƫl Hertzog for the tip.
if [ -e /etc/cron.monthly/standard.dpkg-bak ]; then
mv /etc/cron.monthly/standard.dpkg-bak \
/etc/cron.monthly/standard-obsolete-please-verify-and-remove
fi
# Add group for crontabs
getent group crontab > /dev/null 2>&1 || addgroup --system crontab
# Fixup crontab binary for new group 'crontab'.
if ! dpkg-statoverride --list /usr/bin/crontab > /dev/null ; then
dpkg-statoverride --update --add root crontab 2755 /usr/bin/crontab
fi
# Fixup crontab , directory and files for new group 'crontab'.
# Can't use dpkg-statoverride for this because it doesn't cooperate nicely
# with cron alternatives such as bcron
if [ -d $crondir/crontabs ] ; then
chown root:crontab $crondir/crontabs
chmod 1730 $crondir/crontabs
# This used to be done conditionally. For versions prior to "3.0pl1-81"
# It has been disabled to suit cron alternative such as bcron.
cd $crondir/crontabs
set +e
ls -1 | xargs -r -n 1 --replace=xxx chown 'xxx:crontab' 'xxx'
ls -1 | xargs -r -n 1 chmod 600
set -e
fi
# Automatically added by dh_installinit
if [ -e "/etc/init/cron.conf" ]; then
invoke-rc.d cron start || exit $?
fi
# End automatically added section
# Automatically added by dh_installinit
update-rc.d -f cron remove >/dev/null || exit $?
# End automatically added section
|