21 lines
511 B
Plaintext
Raw Normal View History

#!/bin/sh -e
set -e
if dpkg-maintscript-helper supports mv_conffile 2>/dev/null; then
dpkg-maintscript-helper mv_conffile /etc/xdg/pcmanfm/lubuntu.conf /etc/xdg/pcmanfm/lubuntu/pcmanfm.conf 0.15 -- "$@"
fi
case "$1" in
remove|purge)
if [ -x /usr/lib/lightdm/lightdm-set-defaults ] ; then
2011-08-16 01:22:01 +02:00
/usr/lib/lightdm/lightdm-set-defaults --remove --session=Lubuntu || true
/usr/lib/lightdm/lightdm-set-defaults --remove --greeter=lightdm-gtk-greeter || true
fi
;;
esac
#DEBHELPER#
exit 0