view debian/gftp-text.prerm @ 818:42a92d671a0d

2006-9-26 Brian Masney <masneyb@gftp.org> * lib/rfc959.c (rfc959_end_transfer) - close the data connection before the control connection is closed. (rfc959_put_next_file_chunk) - make sure the entire block is properly written to the server. This is due to the ASCII conversion (if necessary) is performed in this function. Removed rfc959_set_file_time().
author masneyb
date Tue, 26 Sep 2006 11:48:55 +0000
parents 44a018ea578c
children
line wrap: on
line source

#!/bin/sh
# prerm script for gftp-text

set -e

case "$1" in
        remove|deconfigure)
                update-alternatives --remove ftp /usr/bin/gftp-text
        ;;
        failed-upgrade|upgrade)
        ;;
        *)
                echo "prerm called with unknown argument \`$1'" >&2
                exit 1
        ;;
esac

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#

exit 0