mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
make sure that options are quoted, as people can add a shell
script there with a comma that would produce invalid configuration upon being wrote again
This commit is contained in:
@@ -256,7 +256,7 @@ def writekeys(module, filename, keys):
|
||||
option_strings = []
|
||||
for option_key in sorted(options.keys()):
|
||||
if options[option_key]:
|
||||
option_strings.append("%s=%s" % (option_key, options[option_key]))
|
||||
option_strings.append("%s=\"%s\"" % (option_key, options[option_key]))
|
||||
else:
|
||||
option_strings.append("%s " % option_key)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user