/usr/lib/ubiquity/target-config/60edubuntu-default-session is in edubuntu-live 14.04.2build1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 | #!/bin/sh
. /usr/share/debconf/confmodule
db_get ubiquity/edubuntu-addon_fallback_install
INSTALL="$RET"
if [ "$INSTALL" = "true" ]; then
mkdir -p /target/etc/lightdm/lightdm.conf.d
echo "[SeatDefaults]" > /target/etc/lightdm/lightdm.conf.d/90-edubuntu.conf
echo "user-session=gnome-fallback" >> /target/etc/lightdm/lightdm.conf.d/90-edubuntu.conf
fi
|