#!/bin/sh

. /usr/share/debconf/confmodule

db_get ubiquity/edubuntu-addon_unity_install
INSTALL="$RET"

if [ "$INSTALL" = "true" ]; then
    chroot /target /usr/lib/gdm/gdm-set-default-session gnome || true
fi
