postinst is in heimdal-clients 1.6~git20120311.dfsg.1-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 | #!/bin/sh -e
for i in ftp telnet rsh rcp pagsh
do
update-alternatives --install /usr/bin/$i $i /usr/bin/k$i 23 \
--slave /usr/share/man/man1/$i.1.gz $i.1.gz /usr/share/man/man1/k$i.1.gz
done
|