Blame | Last modification | View Log | RSS feed
# splash-manager - requests splash screen## This service emits a splash-request event when# its time to put up the plymouth splash## Do not edit this file directly. If you want to change the behaviour,# please create a file splash-manager.override and put your changes there.start on starting rc RUNLEVEL=[06]taskconsole outputscriptif [ "$RUNLEVEL" = "0" ]; thenMESSAGE=$"Shutting down..."elif [ "$RUNLEVEL" = "6" ]; thenMESSAGE=$"Restarting..."fiif initctl status prefdm 2>/dev/null | grep -q stop/waiting; theninitctl emit splash-request IMMEDIATE=1 MODE=shutdown MESSAGE="$MESSAGE"elseinitctl emit splash-request MODE=shutdown MESSAGE="$MESSAGE"fiend script