Alf Gaida 807bf662ff Added debian/{postinst,prerm} (Closes: 827912)
thanks Jordi Pujol Palomer <jordipujolp@gmail.com>
Bump standards to 3.9.8
Bump copyright years
Finally fixed git-links
2016-06-30 18:33:24 +02:00

25 lines
349 B
Bash

#!/bin/sh
# prerm script for #PACKAGE#
#
# see: dh_installdeb(1)
set -e
case "$1" in
remove|upgrade|deconfigure)
update-alternatives --remove ssh-askpass /usr/bin/lxqt-openssh-askpass
;;
failed-upgrade)
;;
*)
echo "prerm called with unknown argument \`$1'" >&2
exit 1
;;
esac
#DEBHELPER#
exit 0