view debian/gftp-text.prerm @ 942:85cf59eafce2

2008-01-24 Brian Masney <masneyb@gftp.org> * lib/config_file.c lib/sshv2.c lib/sslcommon.c lib/rfc2068.c - s/g_malloc/g_malloc0/
author masneyb
date Thu, 24 Jan 2008 23:28:30 +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