#!/bin/sh -e

# Source debconf library.
. /usr/share/debconf/confmodule

db_get shared/default-x-display-manager || true
if [ "$RET" != "lightdm" ]; then
    db_input high debathena-lightdm-config/force_lightdm || true
    db_go
fi
