postinst is in debconf-utils 1.5.42ubuntu1.
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 | #!/bin/sh
set -e
# directory turned into symlink; give dpkg a hand.
if [ ! -L /usr/share/doc/debconf-utils ] && \
[ -e /usr/share/doc/debconf-utils ]; then
rmdir /usr/share/doc/debconf-utils
ln -sf debconf /usr/share/doc/debconf-utils
fi
|