postinst is in update-inetd 4.43.
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 | #! /bin/sh
# Abort if any command returns an error value
set -e
if [ "$1" = "configure" -o "$1" = "reconfigure" ] ; then
. /usr/share/debconf/confmodule
db_capb
fi
|