Comment 51 for bug 672177

Revision history for this message
ingo (ingo-steiner) wrote :

Clint, seems you are doing an excellent job and I am confident it gets fixed finally!

Your proposal works, however only if I modify /etc/init.d/umountroot this way:

 [ -f /var/run/init.upgraded ] && telinit u && sleep 1 || :

it does *not* work, if I place the sleep in a separate line like this:

 [ -f /var/run/init.upgraded ] && telinit u || :
        sleep 1

Are you sure that at the end of the line a ":" (colon) is correct, or should it be a ";" (semicolon)?