mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-25 11:51:26 -07:00
Fix some templating issues, needs testing with anti-unicode safeguard around shlex.split
This commit is contained in:
parent
bd7de28a64
commit
b76efa39be
3 changed files with 6 additions and 5 deletions
|
@ -83,7 +83,7 @@ class Task(object):
|
|||
import_tags = import_tags.split(",")
|
||||
|
||||
self.name = utils.template(self.name, self.module_vars)
|
||||
self.action = utils.template(self.name, self.module_vars)
|
||||
self.action = utils.template(self.action, self.module_vars)
|
||||
|
||||
# handle mutually incompatible options
|
||||
if self.with_items is not None and self.first_available_file is not None:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue