From 10c32f53596120eaca958b7500430f9c164a4b0f Mon Sep 17 00:00:00 2001 From: Nalin Dahyabhai Date: Thu, 16 Jan 2003 03:11:41 +0000 Subject: * rc.d/rc.sysinit: discard anything after the name of the tty when looking for mingetty invocations in /etc/inittab, avoids barfing on systems where 'mingetty /dev/ttyFOO --noclear' is in use (like mine) --- rc.d/rc.sysinit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rc.d') diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index 06f6540b..dffc1e74 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -35,7 +35,7 @@ if [ "$BOOTUP" = "graphical" ]; then fi if [ "`/sbin/consoletype`" = "vt" -a -x /sbin/setsysfont ]; then - for i in `LC_ALL=C grep '^[0-9]*.*respawn:/sbin/mingetty' /etc/inittab | sed 's/^.* tty//'`; do + for i in `LC_ALL=C grep '^[0-9]*.*respawn:/sbin/mingetty' /etc/inittab | sed 's/^.* tty\([0-9][0-9]*\).*/\1/g'`; do > /dev/tty$i done echo -n "Setting default font ($SYSFONT): " -- cgit v1.2.1