forked from pool/systemd
Frederic Crozat
d7a8930eb1
- Add services to stop bootsplash at end of startup and start it at beginning of shutdown. - Fix bootsplash call and ensure dependencies are set right. - Add services to stop bootsplash at end of startup and start it at beginning of shutdown. - Fix bootsplash call and ensure dependencies are set right. OBS-URL: https://build.opensuse.org/request/show/85489 OBS-URL: https://build.opensuse.org/package/show/Base:System/systemd?expand=0&rev=203
11 lines
189 B
Bash
11 lines
189 B
Bash
#! /bin/bash
|
|
. /etc/rc.splash $1
|
|
export RUNLEVEL=$1
|
|
export PREVLEVEL=N
|
|
if [ "$1" == "5" ]; then
|
|
splashtrigger "rlreached $1"
|
|
else
|
|
splashtrigger "rlchange $1"
|
|
splashtrigger "coolo"
|
|
fi
|