From: Harald Hoyer Date: Thu, 14 Aug 2014 10:56:53 +0000 (+0200) Subject: i18n: check for $i18n_install_all == "yes" rather than being set X-Git-Tag: RHEL-7.2~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7c0b1d864dda88befa458b34d9408605883e2c74;p=thirdparty%2Fdracut.git i18n: check for $i18n_install_all == "yes" rather than being set i18n_install_all="no" does not have the expected effect without this patch (cherry picked from commit ae488efa5e6103ffc1be8b8782f8a1c7a5aa90b4) --- diff --git a/modules.d/10i18n/module-setup.sh b/modules.d/10i18n/module-setup.sh index 2c0a275c6..4fd811621 100755 --- a/modules.d/10i18n/module-setup.sh +++ b/modules.d/10i18n/module-setup.sh @@ -241,7 +241,7 @@ install() { if checks; then install_base - if [[ ${hostonly} ]] && ! [[ ${i18n_install_all} ]]; then + if [[ ${hostonly} ]] && ! [[ ${i18n_install_all} == "yes" ]]; then install_local_i18n || install_all_kbd else install_all_kbd