From: Martin Pitt Date: Thu, 9 Jul 2015 14:25:00 +0000 (+0200) Subject: units: emergency.service: wait for plymouth to shut down X-Git-Tag: v223~121^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ac59f0c12c117b9bb5b7e17f33987b0107791239;p=thirdparty%2Fsystemd.git units: emergency.service: wait for plymouth to shut down Merely calling "plymouth quit" isn't sufficient, as plymouth needs some time to shut down. This needs plymouth --wait (which is a no-op when it's not running). Fixes invisible emergency shell with plymouth running endlessly. https://launchpad.net/bugs/1471258 --- diff --git a/units/emergency.service.in b/units/emergency.service.in index 52b9b1cd034..8dc3cbdede3 100644 --- a/units/emergency.service.in +++ b/units/emergency.service.in @@ -16,7 +16,7 @@ Before=shutdown.target [Service] Environment=HOME=/root WorkingDirectory=/root -ExecStartPre=-/bin/plymouth quit +ExecStartPre=-/bin/plymouth --wait quit ExecStartPre=-/bin/echo -e 'Welcome to emergency mode! After logging in, type "journalctl -xb" to view\\nsystem logs, "systemctl reboot" to reboot, "systemctl default" or ^D to\\ntry again to boot into default mode.' ExecStart=-/bin/sh -c "@SULOGIN@; @SYSTEMCTL@ --job-mode=fail --no-block default" Type=idle