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:
parent
3c3e9c3b36
commit
f364d7af8e
1 changed files with 1 additions and 0 deletions
1
lib/ansible/modules/system/parted.py
Executable file → Normal file
1
lib/ansible/modules/system/parted.py
Executable file → Normal 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']
|
||||
|
|
Loading…
Reference in a new issue