mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-16 13:51:09 +00:00
redhat_subscription: C locale for stdout scraping (#40165)
This commit is contained in:
@@ -556,7 +556,8 @@ class RhsmPools(object):
|
||||
args += " --consumed"
|
||||
else:
|
||||
args += " --available"
|
||||
rc, stdout, stderr = self.module.run_command(args, check_rc=True)
|
||||
lang_env = dict(LANG='C', LC_ALL='C', LC_MESSAGES='C')
|
||||
rc, stdout, stderr = self.module.run_command(args, check_rc=True, environ_update=lang_env)
|
||||
|
||||
products = []
|
||||
for line in stdout.split('\n'):
|
||||
|
||||
Reference in New Issue
Block a user