blob: 048730aa0825d368f84025a90b9900940b409b78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
set -e
if [ "${BASEDIR:=/}" = "/" ]; then
BASEDIR=""
fi
case "$1" in
upgrade) ;;
remove|failed-upgrade|deconfigure)
update-alternatives --remove assistant "/usr/bin/tqassistant"
;;
esac
#DEBHELPER#
|