By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1453
Collapse All | Expand All

(-)file_not_specified_in_diff (-11 / +15 lines)
Line  Link Here
0
-- tdm-trinity.conf
0
++ tdm-trinity.conf
Lines 21-37 Link Here
21
emits desktop-shutdown
21
emits desktop-shutdown
22
22
23
script
23
script
24
    [ ! -f /etc/X11/default-display-manager -o "$(cat /etc/X11/default-display-manager 2>/dev/null)" = "/opt/trinity/bin/tdm" ]
24
    if [ -n "$UPSTART_EVENTS" ]
25
    then
26
        [ ! -f /etc/X11/default-display-manager -o "$(cat /etc/X11/default-display-manager 2>/dev/null)" = "/opt/trinity/bin/tdm" ] || { stop; exit 0; }
25
27
26
    # Check kernel command-line for inhibitors
28
        # Since we have no plymouth integration to take over the VT we simply
27
    for ARG in $(cat /proc/cmdline)
29
        # quit plymouth all the time. Note that sleeping appears necessary
28
    do
30
        # as the VT freeing is somewhat delayed and TDM would otherwise go
29
        case "${ARG}" in
31
        # to configured KVT+1 (if plymouth was using it).
30
            text|-s|s|S|single)
32
        $(plymouth --quit && plymouth --wait && sleep 1) || :
31
                exit 0
33
        if [ "$RUNLEVEL" = S -o "$RUNLEVEL" = 1 ]
32
                ;;
34
        then
33
        esac
35
            # Single-user mode
34
    done
36
            exit 0
37
        fi
38
    fi
35
39
36
    if [ -r /etc/default/locale ]; then
40
    if [ -r /etc/default/locale ]; then
37
	. /etc/default/locale
41
	. /etc/default/locale

Return to bug 1453