From a79cd004b1212125f1bb8f2b6d72065aa7505c4e Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 19 Mar 2009 12:50:44 -0400 Subject: Add plymouth shutdown script (#473237) --- event.d/plymouth-shutdown | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 event.d/plymouth-shutdown (limited to 'event.d') diff --git a/event.d/plymouth-shutdown b/event.d/plymouth-shutdown new file mode 100644 index 00000000..d76dbd3f --- /dev/null +++ b/event.d/plymouth-shutdown @@ -0,0 +1,24 @@ +# plymouth-shutdown - put up shutdown splash +# +# This service triggers plymouth to put up a splash +# when leaving runlevel 5. + +start on stopped prefdm + +console output +script + set $(runlevel || true) + if [ "$2" != "0" ] && [ "$2" != "6" ]; then + exit 0 + fi + + /sbin/plymouthd --mode=shutdown || exit 1 + /bin/plymouth --sysinit + /bin/plymouth --show-splash + if [ "$2" = "0" ]; then + /bin/plymouth message --text="Shutting down..." + elif [ "$2" = "6" ]; then + /bin/plymouth message --text="Restarting..." + fi +end script + -- cgit v1.2.1