Merge pull request #6826 from bob-smith/debconf-parsing

debconf correctly quote strings
This commit is contained in:
Michael DeHaan 2014-04-02 16:14:17 -04:00
commit 71061479a0

View file

@ -107,7 +107,7 @@ def set_selection(module, pkg, question, vtype, value, unseen):
data = ' '.join([ question, vtype, value ])
setsel = module.get_bin_path('debconf-set-selections', True)
cmd = ["echo '%s %s' |" % (pipes.quote(pkg), pipes.quote(data)), setsel]
cmd = ["echo %s %s |" % (pipes.quote(pkg), pipes.quote(data)), setsel]
if unseen:
cmd.append('-u')