postinst is in ftp 0.17-25.
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 | #!/bin/sh
# $Id: postinst,v 1.1 2000/03/23 10:27:08 herbert Exp $
set -e
update-alternatives --install /usr/bin/ftp ftp /usr/bin/netkit-ftp 100 \
--slave /usr/share/man/man1/ftp.1.gz ftp.1.gz \
/usr/share/man/man1/netkit-ftp.1.gz
|