postinst is in ftp-ssl 0.17.33+0.2-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 | #!/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/ftp-ssl 110 \
--slave /usr/bin/pftp pftp /usr/bin/ftp-ssl \
--slave /usr/share/man/man1/ftp.1.gz ftp.1.gz \
/usr/share/man/man1/ftp-ssl.1.gz \
--slave /usr/share/man/man1/pftp.1.gz pftp.1.gz \
/usr/share/man/man1/ftp-ssl.1.gz \
--slave /usr/share/man/man5/netrc.5.gz netrc.5.gz \
/usr/share/man/man5/netrc-ssl.5.gz
|