The rc.sysinit script checks if the booting system is Red Hat or Fedora, and displays a welcome message accordingly.. both with red text for the names. The conditional statement is already there to support different colors for both OS's, so we might as well give Fedora it's own color -- blue. --- /etc/rc.d/rc.sysinit 2005-10-15 01:25:03.000000000 -0400 +++ rc.sysinit 2005-10-15 01:21:53.000000000 -0400 @@ -95,7 +95,7 @@ PRODUCT=`sed "s/Red Hat \(.*\) release.*/\1/" /etc/redhat-release` echo " $PRODUCT" elif LC_ALL=C fgrep -q "Fedora" /etc/redhat-release ; then - [ "$BOOTUP" = "color" ] && echo -en "\\033[0;31m" + [ "$BOOTUP" = "color" ] && echo -en "\\033[0;34m" echo -en "Fedora" [ "$BOOTUP" = "color" ] && echo -en "\\033[0;39m" PRODUCT=`sed "s/Fedora \(.*\) release.*/\1/" /etc/redhat-release`
*** This bug has been marked as a duplicate of 147093 ***