summaryrefslogtreecommitdiffstats
path: root/ubuntu/maverick/kdebase/debian/kdm-trinity.conf
blob: 554e5a38e236b3bde0ba2f428b179793d7384718 (plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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