diff options
author | Bill Nottingham <notting@redhat.com> | 2008-11-11 11:48:53 -0500 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2008-11-11 11:48:53 -0500 |
commit | eeed550077ee4172c672af100f8b077b016d22e3 (patch) | |
tree | 0e40dad6efe2df8d51fe6938da21639e05f48b22 | |
parent | 1b266ddb45ba4a5b5ba92f09f010c3592f28ae95 (diff) | |
download | initscripts-eeed550077ee4172c672af100f8b077b016d22e3.tar initscripts-eeed550077ee4172c672af100f8b077b016d22e3.tar.gz initscripts-eeed550077ee4172c672af100f8b077b016d22e3.tar.bz2 initscripts-eeed550077ee4172c672af100f8b077b016d22e3.tar.xz initscripts-eeed550077ee4172c672af100f8b077b016d22e3.zip |
Stop plymouth before stopping the runlevel (#467207)
This ensures plymouth stops before the getty starts.
-rw-r--r-- | event.d/quit-plymouth | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/event.d/quit-plymouth b/event.d/quit-plymouth index 4c284ff8..ba392b1e 100644 --- a/event.d/quit-plymouth +++ b/event.d/quit-plymouth @@ -1,10 +1,12 @@ # quit-plymouth - script to stop boot splash # # This service triggers plymouth to quit when we reach the -# end of the boot cycle. prefdm handles quit differently, though. +# end of the boot cycle. We start on 'stopping rcX' to make sure +# this completes before the getty starts. +# prefdm handles quit differently, though. -start on stopped rc2 -start on stopped rc3 -start on stopped rc4 +start on stopping rc2 +start on stopping rc3 +start on stopping rc4 exec /usr/bin/plymouth quit |