Merge pull request #9060 from jamespharaoh/apt-lang
add LANG=C to apt module so the string matches on the output always matc...pull/4420/head
commit
5850467bc1
|
@ -148,7 +148,8 @@ import fnmatch
|
|||
# APT related constants
|
||||
APT_ENV_VARS = dict(
|
||||
DEBIAN_FRONTEND = 'noninteractive',
|
||||
DEBIAN_PRIORITY = 'critical'
|
||||
DEBIAN_PRIORITY = 'critical',
|
||||
LANG = 'C'
|
||||
)
|
||||
|
||||
DPKG_OPTIONS = 'force-confdef,force-confold'
|
||||
|
|
Loading…
Reference in New Issue