postinst is in at 3.1.14-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 21 22 23 24 25 26 27 28 | #!/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_systemd_enable
if [ -x "/usr/bin/deb-systemd-helper" ]; then
deb-systemd-helper enable atd.service >/dev/null || true
fi
# End automatically added section
# Automatically added by dh_installinit
if [ -x "/etc/init.d/atd" ] || [ -e "/etc/init/atd.conf" ]; then
if [ ! -e "/etc/init/atd.conf" ]; then
update-rc.d atd defaults 89 11 >/dev/null
fi
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
|