blob: b1c0d9f94f1c876e48772a7d3c1f5ddfcf2846ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_install() {
DCONF_PROFILE='lightdm' dconf update
}
post_upgrade() {
post_install
}
post_remove() {
post_install
rm -f /etc/dconf/db/lightdm
}
# vim: ts=2 sw=2 et:
|