Commit 5850467b by Toshio Kuratomi

Merge pull request #9060 from jamespharaoh/apt-lang

add LANG=C to apt module so the string matches on the output always matc...
parents cc80b058 98a1fd68
...@@ -148,7 +148,8 @@ import fnmatch ...@@ -148,7 +148,8 @@ import fnmatch
# APT related constants # APT related constants
APT_ENV_VARS = dict( APT_ENV_VARS = dict(
DEBIAN_FRONTEND = 'noninteractive', DEBIAN_FRONTEND = 'noninteractive',
DEBIAN_PRIORITY = 'critical' DEBIAN_PRIORITY = 'critical',
LANG = 'C'
) )
DPKG_OPTIONS = 'force-confdef,force-confold' DPKG_OPTIONS = 'force-confdef,force-confold'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment