Merge "Set locale before check dnsmasq version"

This commit is contained in:
Jenkins 2015-02-01 05:33:24 +00:00 committed by Gerrit Code Review
commit 64bd24f9d6
1 changed files with 2 additions and 1 deletions

View File

@ -144,7 +144,8 @@ def get_minimal_dnsmasq_version_supported():
def dnsmasq_version_supported():
try:
cmd = ['dnsmasq', '--version']
out = agent_utils.execute(cmd)
env = {'LC_ALL': 'C'}
out = agent_utils.execute(cmd, addl_env=env)
m = re.search(r"version (\d+\.\d+)", out)
ver = float(m.group(1)) if m else 0
if ver < MINIMUM_DNSMASQ_VERSION: