postinst is in atop 1.26-2.
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 | #!/bin/bash
set -e
if dpkg-maintscript-helper supports rm_conffile; then
dpkg-maintscript-helper rm_conffile \
/etc/logrotate.d/atop 1.26-2~ -- "$@"
fi
# Automatically added by dh_installinit
if [ -x "/etc/init.d/atop" ]; then
if [ ! -e "/etc/init/atop.conf" ]; then
update-rc.d atop defaults >/dev/null
fi
invoke-rc.d atop start || exit $?
fi
# End automatically added section
|