/usr/sbin/lxdm is in lxdm 0.5.3-2.1.
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 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | #!/bin/sh
[ -f /etc/sysconfig/i18n ] && . /etc/sysconfig/i18n
if [ -z "$LANG" -a -e /etc/sysconfig/language ]; then
. /etc/sysconfig/language
if [ -n "$RC_LANG"]; then
LANG=$RC_LANG
fi
fi
if [ -n "$LANG" ]; then
export LANG
fi
[ -f /etc/sysconfig/desktop ] && . /etc/sysconfig/desktop
[ -f /etc/sysconfig/windowmanager ] && . /etc/sysconfig/windowmanager
if [ -n "$DEFAULT_WM" ]; then
PREFERRED=$DEFAULT_WM
fi
if [ -n "$DESKTOP" ]; then
export DESKTOP
fi
if [ -n "$PREFERRED" ]; then
export PREFERRED
fi
exec /usr/sbin/lxdm-binary $*
|