1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fixes parted i18n issues (#24991)

* Fixed issue 24969

* Used C locale and global env update.
This commit is contained in:
Fabrizio Colonna 2017-06-01 20:27:27 +01:00 committed by Brian Coca
parent 3c3e9c3b36
commit f364d7af8e

1
lib/ansible/modules/system/parted.py Executable file → Normal file
View file

@ -590,6 +590,7 @@ def main():
},
supports_check_mode=True,
)
module.run_command_environ_update = {'LANG': 'C', 'LC_ALL': 'C', 'LC_MESSAGES': 'C'}
# Data extraction
device = module.params['device']