11 lines
149 B
Bash
11 lines
149 B
Bash
#!/bin/sh -e
|
|
|
|
set -e
|
|
|
|
if [ "$1" = "remove" ] ; then
|
|
update-alternatives --remove lxdm.conf /etc/xdg/lubuntu/lxdm/lxdm.conf
|
|
fi
|
|
|
|
#DEBHELPER#
|
|
exit 0
|