diff options
author | Michal Schmidt <mschmidt@redhat.com> | 2011-09-22 23:52:38 +0200 |
---|---|---|
committer | Michal Schmidt <mschmidt@redhat.com> | 2011-09-22 23:59:50 +0200 |
commit | 0fe9972f3c2e20b649e0e7da0e61945253622128 (patch) | |
tree | aa179bd9f3af545228a70451b5fdc2bb22c705b5 | |
parent | 1c744f2ba6b60dde72a32e7af61816f019c5bc40 (diff) |
units: fix rescue.service race with plymouth
It was possible for the "ExecStartPre=-/bin/plymouth quit" to race
with plymouth-start.service which is pulled in indirectly by
basic.target -> sysinit.target.
The race left plymouth running on the terminal, making it unusable for
rescue purposes.
https://bugzilla.redhat.com/show_bug.cgi?id=710487
-rw-r--r-- | units/rescue.service.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/units/rescue.service.m4 b/units/rescue.service.m4 index 8f29de8a15..19b30d89f9 100644 --- a/units/rescue.service.m4 +++ b/units/rescue.service.m4 @@ -11,7 +11,7 @@ Description=Rescue Shell DefaultDependencies=no Conflicts=shutdown.target -After=basic.target +After=basic.target plymouth-start.service Before=shutdown.target [Service] |