/etc/X11/Xsession.d/00upstart is in upstart 1.13.2-0ubuntu21.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 | # Make ubuntu-upstart an alias for ubuntu
if grep -q "^$DESKTOP_SESSION\$" /etc/upstart-xsessions; then
export XDG_CONFIG_DIRS="/usr/share/upstart/xdg:/etc/xdg"
BASESESSION=${1% *}
BASESESSION=${BASESESSION##*/}
if [ "$BASESESSION" = x-session-manager ]; then
BASESESSION=$(basename $(readlink /etc/alternatives/x-session-manager))
fi
UPSTART=1
fi
|