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.
tde-packaging/ubuntu/maverick_automake/kdebase/debian/tdm-kde3.preinst

30 lines
440 B

#! /bin/sh -e
case "$1" in
upgrade)
rm -f /etc/kde3/debian/tdm-update-menu.sh
rm -f /etc/kde3/debian/tdm.options
rm -f /etc/kde3/tdm/pixmaps/XFree86bw.xpm
rm -f /etc/kde3/tdm/pixmaps/XFree86.xpm
rm -f /etc/kde3/tdm/Xresources
rm -f /etc/menu-methods/tdm
;;
install)
;;
abort-upgrade)
;;
*)
echo "preinst called with unknown argument \`$1'" >&2
exit 1
;;
esac
#DEBHELPER#
exit 0