postinst is in ftp-ssl 0.17.23+0.2-1build1.
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/ftp-ssl 100 \
--slave /usr/share/man/man1/ftp.1.gz ftp.1.gz \
/usr/share/man/man1/ftp-ssl.1.gz
|