mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
fix non bool path
This commit is contained in:
parent
b2e992cecd
commit
b0ddb88f13
1 changed files with 3 additions and 0 deletions
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue