mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge branch 'mathieumd-devel' into devel
This commit is contained in:
commit
c642fe4b84
2 changed files with 3 additions and 3 deletions
|
@ -1039,8 +1039,8 @@ class AnsibleModule(object):
|
||||||
# issues but is preferable to simply failing because
|
# issues but is preferable to simply failing because
|
||||||
# of an unknown locale
|
# of an unknown locale
|
||||||
locale.setlocale(locale.LC_ALL, 'C')
|
locale.setlocale(locale.LC_ALL, 'C')
|
||||||
os.environ['LANG'] = 'C'
|
os.environ['LANG'] = 'C'
|
||||||
os.environ['LC_CTYPE'] = 'C'
|
os.environ['LC_ALL'] = 'C'
|
||||||
os.environ['LC_MESSAGES'] = 'C'
|
os.environ['LC_MESSAGES'] = 'C'
|
||||||
except Exception:
|
except Exception:
|
||||||
e = get_exception()
|
e = get_exception()
|
||||||
|
|
|
@ -38,7 +38,7 @@ class ShellModule(object):
|
||||||
'''Build command prefix with environment variables.'''
|
'''Build command prefix with environment variables.'''
|
||||||
env = dict(
|
env = dict(
|
||||||
LANG = C.DEFAULT_MODULE_LANG,
|
LANG = C.DEFAULT_MODULE_LANG,
|
||||||
LC_CTYPE = C.DEFAULT_MODULE_LANG,
|
LC_ALL = C.DEFAULT_MODULE_LANG,
|
||||||
LC_MESSAGES = C.DEFAULT_MODULE_LANG,
|
LC_MESSAGES = C.DEFAULT_MODULE_LANG,
|
||||||
)
|
)
|
||||||
env.update(kwargs)
|
env.update(kwargs)
|
||||||
|
|
Loading…
Reference in a new issue