Browse Source

[PATCH 17/50] Tighten up the font installation case statement as well.

master
Victor Lowther 16 years ago committed by Dave Jones
parent
commit
5a862b968a
  1. 8
      dracut

8
dracut

@ -97,12 +97,8 @@ if [ -f /etc/sysconfig/i18n ]; then @@ -97,12 +97,8 @@ if [ -f /etc/sysconfig/i18n ]; then
for FN in /lib/kbd/consolefonts/$SYSFONT.* ; do
inst "$FN" "$initdir"
case $FN in
*.gz)
gzip -d "$initdir$FN"
;;
*.bz2)
bzip2 -d "$initdir$FN"
;;
*.gz) gzip -d "$initdir$FN" ;;
*.bz2) bzip2 -d "$initdir$FN" ;;
esac
done
[[ $SYSFONTACM ]] && inst /lib/kbd/consoletrans/$SYSFONTACM "$initdir"

Loading…
Cancel
Save