* debian/prerm:

- Don't remove alternative on upgrade.
This commit is contained in:
Julien Lavergne 2010-10-03 15:59:54 +02:00
parent 10e4e715dc
commit 3cced2600d
2 changed files with 3 additions and 1 deletions

2
debian/changelog vendored
View File

@ -2,6 +2,8 @@ lubuntu-default-settings (0.12) UNRELEASED; urgency=low
* debian/postinst:
- Remove alternatives file if it's not a symlink (LP: #625485).
* debian/prerm:
- Don't remove alternative on upgrade.
-- Julien Lavergne <gilir@ubuntu.com> Wed, 29 Sep 2010 00:46:48 +0200

2
debian/prerm vendored
View File

@ -2,7 +2,7 @@
set -e
if [ "$1" = "remove" ] || [ "$1" = upgrade ]; then
if [ "$1" = "remove" ] ; then
update-alternatives --remove lxdm.conf /etc/xdg/lubuntu/lxdm/lxdm.conf
fi