11 lines
170 B
Plaintext
11 lines
170 B
Plaintext
|
#!/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
|