Commit 02335843 by Brian Coca

fixed main() issue created in prev fix, now values are empty string if they were None

Signed-off-by: Brian Coca <briancoca+ansible@gmail.com>
parent de956c57
......@@ -100,8 +100,10 @@ def set_selection(module, pkg, question, vtype, value, unseen):
answer = [ question ]
if 'vtype':
answer.append(vtype)
answer.append(value)
if value is None:
value = ''
answer.append(value)
data = ' '.join(answer)
setsel = module.get_bin_path('debconf-set-selections', True)
......@@ -159,3 +161,5 @@ def main():
# import module snippets
from ansible.module_utils.basic import *
main()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment