Comment 20 for bug 735805

Revision history for this message
James Hunt (jamesodhunt) wrote :

It's looking like the problem may be with the runlevel test here:

    31 if [ "$curr" = S -o "$prev" = unknown ]
    32 then
    33 # Single-user mode
    34 plymouth quit || :
    35 exit 0
    36 fi

I've attached a version of /etc/init/gdm.conf that changes that "if" test on line 31 to:

    31 if [ "$curr" = S ]
    32 then
    33 # Single-user mode
    34 plymouth quit || :
    35 exit 0
    36 fi

Please could you test this and let me know if you can still recreate the problem.

Thanks in advance.