postinst is in at 3.1.13-1ubuntu1.
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 | #!/bin/sh
set -e
if [ "$1" = "configure" ]; then
SEQFILE=/var/spool/cron/atjobs/.SEQ
if [ ! -f $SEQFILE ]; then
echo 0 > $SEQFILE
chmod 600 $SEQFILE
chown daemon:daemon $SEQFILE
fi
fi
# Automatically added by dh_installinit
if [ -e "/etc/init/atd.conf" ]; then
invoke-rc.d atd start || exit $?
fi
# End automatically added section
# Automatically added by dh_installinit
update-rc.d -f atd remove >/dev/null || exit $?
# End automatically added section
|