fix non bool path

pull/4420/head
Brian Coca 2019-03-07 11:23:07 -05:00
parent b2e992cecd
commit b0ddb88f13
1 changed files with 3 additions and 0 deletions

View File

@ -156,6 +156,9 @@ def main():
if question not in prev:
changed = True
else:
existing = prev[question]
# ensure we compare booleans supplied to the way debconf sees them (true/false strings)
if vtype == 'boolean':
value = to_text(value).lower()