Merge pull request #3252 from h-imaoka/yum-lang-fix

One more bug yum non English locales
This commit is contained in:
Toshio Kuratomi 2016-03-16 18:19:55 -07:00
commit 1eea1be5c5

View file

@ -657,7 +657,8 @@ def install(module, items, repoq, yum_basecmd, conf_file, en_repos, dis_repos):
changed = True
rc, out, err = module.run_command(cmd)
lang_env = dict(LANG='C', LC_ALL='C', LC_MESSAGES='C')
rc, out, err = module.run_command(cmd, environ_update=lang_env)
if (rc == 1):
for spec in items: