diff options
author | Nils Philippsen <nphilipp@redhat.com> | 2007-07-17 15:14:37 +0000 |
---|---|---|
committer | Nils Philippsen <nphilipp@redhat.com> | 2007-07-17 15:14:37 +0000 |
commit | 936f71ddbcdab97583d72235011bedfc3b8b132e (patch) | |
tree | f501d0fff6b0a2dd13cf85d145496c58a2e3d72d /rc.d/rc | |
parent | a4b6b441d047fb33f39569d26a63b44f1a04b119 (diff) | |
download | initscripts-936f71ddbcdab97583d72235011bedfc3b8b132e.tar initscripts-936f71ddbcdab97583d72235011bedfc3b8b132e.tar.gz initscripts-936f71ddbcdab97583d72235011bedfc3b8b132e.tar.bz2 initscripts-936f71ddbcdab97583d72235011bedfc3b8b132e.tar.xz initscripts-936f71ddbcdab97583d72235011bedfc3b8b132e.zip |
avoid calling unicode_start unnecessarily often during startup/shutdown which causes certain monitor/video card combos to flicker heavily (#237839)
Diffstat (limited to 'rc.d/rc')
-rwxr-xr-x | rc.d/rc | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -42,6 +42,13 @@ fi # Is there an rc directory for this new runlevel? [ -d /etc/rc$runlevel.d ] || exit 0 +# Set language, vc settings once to avoid doing it for every init script +# through functions +if [ -f /etc/sysconfig/i18n -a -z "${NOLOCALE:-}" ] ; then + . /etc/profile.d/lang.sh + export LANGSH_SOURCED=1 +fi + # First, run the KILL scripts. for i in /etc/rc$runlevel.d/K* ; do check_runlevel "$i" || continue |