apk: fix LANG != C while parsing stdout (#2689)
This commit is contained in:
parent
cf87e1d9b2
commit
a4427d55c3
1 changed files with 3 additions and 0 deletions
|
@ -212,6 +212,9 @@ def main():
|
|||
supports_check_mode = True
|
||||
)
|
||||
|
||||
# Set LANG env since we parse stdout
|
||||
module.run_command_environ_update = dict(LANG='C', LC_ALL='C', LC_MESSAGES='C', LC_CTYPE='C')
|
||||
|
||||
global APK_PATH
|
||||
APK_PATH = module.get_bin_path('apk', required=True)
|
||||
|
||||
|
|
Loading…
Reference in a new issue