diff options
author | Calvin Morrison <[email protected]> | 2011-11-13 19:27:09 -0500 |
---|---|---|
committer | Calvin Morrison <[email protected]> | 2011-11-13 19:27:09 -0500 |
commit | b04ad86203e19f0e89e971fefc3f40b380cbe7b2 (patch) | |
tree | 639782b440de136501ae6ee50d8d54450765346f /ubuntu/maverick/tdebase/debian/kdm-trinity.conf | |
parent | 7123ebd91f9851d8a0479d043508ec5885e24f91 (diff) | |
parent | 70daaabb4fd5f3b559f5ef489377c9fe93a47f0d (diff) | |
download | tde-packaging-b04ad86203e19f0e89e971fefc3f40b380cbe7b2.tar.gz tde-packaging-b04ad86203e19f0e89e971fefc3f40b380cbe7b2.zip |
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tde-packaging
Diffstat (limited to 'ubuntu/maverick/tdebase/debian/kdm-trinity.conf')
-rwxr-xr-x | ubuntu/maverick/tdebase/debian/kdm-trinity.conf | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/ubuntu/maverick/tdebase/debian/kdm-trinity.conf b/ubuntu/maverick/tdebase/debian/kdm-trinity.conf new file mode 100755 index 000000000..554e5a38e --- /dev/null +++ b/ubuntu/maverick/tdebase/debian/kdm-trinity.conf @@ -0,0 +1,48 @@ +# kdm-trinity - K Display Manager +# +# The display manager service manages the X servers running on the +# system, providing login and auto-login services + +description "K Display Manager for Trinity" +author "Richard Johnson and Timothy Pearson" + +start on (filesystem + and (started hal or started hal-trinity) + and (graphics-device-added fb0 PRIMARY_DEVICE_FOR_DISPLAY=1 + or drm-device-added card0 PRIMARY_DEVICE_FOR_DISPLAY=1 + or stopped udevtrigger)) +stop on runlevel [016] + +emits starting-dm + +respawn + +script + [ ! -f /etc/X11/default-display-manager -o "$(cat /etc/X11/default-display-manager 2>/dev/null)" = "/opt/trinity/bin/kdm" ] + + # Check kernel command-line for inhibitors + for ARG in $(cat /proc/cmdline) + do + case "${ARG}" in + text|-s|s|S|single) + exit 0 + ;; + esac + done + + if [ -r /etc/default/locale ]; then + . /etc/default/locale + export LANG LANGUAGE + elif [ -r /etc/environment ]; then + . /etc/environment + export LANG LANGUAGE + fi + + KDEDIRS=/opt/trinity/ + PATH=/opt/trinity/bin:/bin:/usr/bin:/sbin:/usr/sbin + + initctl emit starting-dm DM=kdm-trinity + + exec /opt/trinity/bin/kdm + +end script |