Add missing files

This commit is contained in:
Julien Lavergne 2010-02-14 12:31:48 +01:00
parent fe9d6c7a31
commit a5ed49b93e
2 changed files with 21 additions and 0 deletions

11
debian/postinst vendored Normal file

@ -0,0 +1,11 @@
#!/bin/sh -e
set -e
if [ "$1" = configure ]; then
update-alternatives --install /etc/lxdm/default.conf \
lxdm.conf /etc/xdg/lubuntu/lxdm/lxdm.conf 60
fi
#DEBHELPER#
exit 0

10
debian/prerm vendored Normal file

@ -0,0 +1,10 @@
#!/bin/sh -e
set -e
if [ "$1" = "remove" ] || [ "$1" = upgrade ]; then
update-alternatives --remove lxdm.conf /etc/xdg/lubuntu/lxdm/lxdm.conf
fi
#DEBHELPER#
exit 0