apk: fix LANG != C while parsing stdout (#2689)

pull/4420/head
René Moser 2016-08-07 21:44:07 +02:00 committed by Matt Clay
parent cf87e1d9b2
commit a4427d55c3
1 changed files with 3 additions and 0 deletions

View File

@ -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)