add LANG=C to apt module so the string matches on the output always match

This commit is contained in:
James Pharaoh 2014-09-18 20:56:10 +02:00
parent 91ca8d42e7
commit 98a1fd681e

View file

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