forked from pool/systemd
Frederic Crozat
f02af58b62
- Add avoid-random-seed-cycle.patch: fix dependency cycle between cryptsetup and random-seed-load (bnc#721666). - Add crash-isolating.patch: fix crash when isolating a service. - Fix bootsplash being killed too early. - Fix some manpages not being redirected properly. - Add storage-after-cryptsetup.service to restart lvm after cryptsetup. Fixes lvm on top of LUKS (bnc#724238). - Add avoid-random-seed-cycle.patch: fix dependency cycle between cryptsetup and random-seed-load (bnc#721666). - Add crash-isolating.patch: fix crash when isolating a service. - Fix bootsplash being killed too early. - Fix some manpages not being redirected properly. - Add storage-after-cryptsetup.service to restart lvm after cryptsetup. Fixes lvm on top of LUKS (bnc#724238). OBS-URL: https://build.opensuse.org/request/show/89336 OBS-URL: https://build.opensuse.org/package/show/Base:System/systemd?expand=0&rev=219
22 lines
475 B
Bash
22 lines
475 B
Bash
#! /bin/bash
|
|
. /etc/rc.splash $1
|
|
export RUNLEVEL=$1
|
|
export PREVLEVEL=N
|
|
if [ "$1" == "5" ]; then
|
|
/bin/systemctl status --no-pager default.target | grep -q graphical.target
|
|
if [ $? -eq 0 ]; then
|
|
declare -i timeout
|
|
timeout=0
|
|
console=`fgconsole`
|
|
while [ $console -eq 1 -a $timeout -lt 30 ] ; do
|
|
sleep 1
|
|
timeout+=1
|
|
console=`fgconsole`
|
|
done
|
|
fi
|
|
splashtrigger "rlreached $1"
|
|
else
|
|
splashtrigger "rlchange $1"
|
|
splashtrigger "coolo"
|
|
fi
|