You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
312 B
23 lines
312 B
13 years ago
|
#! /bin/sh -e
|
||
|
|
||
|
case "$1" in
|
||
|
remove)
|
||
|
/usr/sbin/update-alternatives --remove x-www-browser /usr/trinity/bin/konqueror
|
||
|
;;
|
||
|
|
||
|
upgrade|deconfigure)
|
||
|
;;
|
||
|
|
||
|
failed-upgrade)
|
||
|
;;
|
||
|
|
||
|
*)
|
||
|
echo "prerm called with unknown argument \`$1'" >&2
|
||
|
exit 1
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
#DEBHELPER#
|
||
|
|
||
|
exit 0
|