From b86495580f60058e33c3a5454eda38ffa53d064b Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Mon, 15 Sep 2008 15:19:16 -0400 Subject: Quit plymouth at end of boot cycle. --- prefdm | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'prefdm') diff --git a/prefdm b/prefdm index 3baa6933..675506ee 100755 --- a/prefdm +++ b/prefdm @@ -2,20 +2,17 @@ PATH=/sbin:/usr/sbin:/bin:/usr/bin -# shut down any graphical boot that might exist -if [ -x /usr/bin/rhgb-client ]; then - /usr/bin/rhgb-client --quit -fi - # We need to source this so that the login screens get translated [ -f /etc/sysconfig/i18n ] && . /etc/sysconfig/i18n # Run preferred X display manager +quit_arg= preferred= if [ -f /etc/sysconfig/desktop ]; then . /etc/sysconfig/desktop if [ "$DISPLAYMANAGER" = GNOME ]; then preferred=/usr/sbin/gdm + quit_arg="--retain-splash" elif [ "$DISPLAYMANAGER" = KDE ]; then preferred=/usr/bin/kdm elif [ "$DISPLAYMANAGER" = WDM ]; then @@ -25,8 +22,13 @@ if [ -f /etc/sysconfig/desktop ]; then elif [ -n "$DISPLAYMANAGER" ]; then preferred=$DISPLAYMANAGER fi +else + quit_arg="--retain-splash" fi +# shut down boot splash +/usr/bin/plymouth quit $quit_arg + shopt -s execfail [ -n "$preferred" ] && exec $preferred "$@" >/dev/null 2>&1