mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-25 16:06:43 +00:00
Unquote lines that were quoted for safety during eval in lineinfile
Fixes #8535
This commit is contained in:
@@ -370,7 +370,7 @@ def main():
|
||||
line = re.sub(r'(\\[0-9]{1,3})', r'\\\1', params['line'])
|
||||
else:
|
||||
line = params['line']
|
||||
line = module.safe_eval(pipes.quote(line))
|
||||
line = unquote(module.safe_eval(pipes.quote(line)))
|
||||
|
||||
present(module, dest, params['regexp'], line,
|
||||
ins_aft, ins_bef, create, backup, backrefs)
|
||||
@@ -382,5 +382,6 @@ def main():
|
||||
|
||||
# import module snippets
|
||||
from ansible.module_utils.basic import *
|
||||
from ansible.module_utils.splitter import *
|
||||
|
||||
main()
|
||||
|
||||
Reference in New Issue
Block a user