aboutsummaryrefslogtreecommitdiffstats
path: root/rc.d/rc.sysinit
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2006-10-12 17:51:04 +0000
committerBill Nottingham <notting@redhat.com>2006-10-12 17:51:04 +0000
commit80dc5a242d114fdab33401de252bc40b69fec94c (patch)
tree961beaf071a421525f7df642d1bf0f7a8f88a4e9 /rc.d/rc.sysinit
parenta82619e0a975dfb8bdb4c581cb24cadb1887f321 (diff)
downloadinitscripts-80dc5a242d114fdab33401de252bc40b69fec94c.tar
initscripts-80dc5a242d114fdab33401de252bc40b69fec94c.tar.gz
initscripts-80dc5a242d114fdab33401de252bc40b69fec94c.tar.bz2
initscripts-80dc5a242d114fdab33401de252bc40b69fec94c.tar.xz
initscripts-80dc5a242d114fdab33401de252bc40b69fec94c.zip
revert early-login support (#210836, essentially)
Diffstat (limited to 'rc.d/rc.sysinit')
-rwxr-xr-xrc.d/rc.sysinit4
1 files changed, 2 insertions, 2 deletions
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit
index 028e4d31..168a5636 100755
--- a/rc.d/rc.sysinit
+++ b/rc.d/rc.sysinit
@@ -348,7 +348,7 @@ RHGB_STARTED=0
mount -n /dev/pts >/dev/null 2>&1
[ -n "$SELINUX_STATE" ] && restorecon /dev/pts >/dev/null 2>&1
-if strstr "$cmdline" rhgb && ! strstr "$cmdline" early-login && [ "$BOOTUP" = "color" -a "$GRAPHICAL" = "yes" -a -x /usr/bin/rhgb ]; then
+if strstr "$cmdline" rhgb && [ "$BOOTUP" = "color" -a "$GRAPHICAL" = "yes" -a -x /usr/bin/rhgb ]; then
LC_MESSAGES= /usr/bin/rhgb
RHGB_STARTED=1
fi
@@ -741,7 +741,7 @@ fi
# Start the graphical boot, if necessary and not done yet.
-if strstr "$cmdline" rhgb && ! strstr "$cmdline" early-login && [ "$RHGB_STARTED" -eq 0 -a "$BOOTUP" = "color" -a "$GRAPHICAL" = "yes" -a -x /usr/bin/rhgb ]; then
+if strstr "$cmdline" rhgb && [ "$RHGB_STARTED" -eq 0 -a "$BOOTUP" = "color" -a "$GRAPHICAL" = "yes" -a -x /usr/bin/rhgb ]; then
LC_MESSAGES= /usr/bin/rhgb
RHGB_STARTED=1
fi