mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
parted: Add missing LC_TYPE override for env vars (#26242)
This commit is contained in:
parent
7bb3467db9
commit
7f6c7c6334
1 changed files with 1 additions and 1 deletions
|
@ -590,7 +590,7 @@ def main():
|
|||
},
|
||||
supports_check_mode=True,
|
||||
)
|
||||
module.run_command_environ_update = {'LANG': 'C', 'LC_ALL': 'C', 'LC_MESSAGES': 'C'}
|
||||
module.run_command_environ_update = {'LANG': 'C', 'LC_ALL': 'C', 'LC_MESSAGES': 'C', 'LC_CTYPE': 'C'}
|
||||
|
||||
# Data extraction
|
||||
device = module.params['device']
|
||||
|
|
Loading…
Reference in a new issue