mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-25 03:41:25 -07:00
parent
8648fa175c
commit
8a5675ca9f
2 changed files with 5 additions and 3 deletions
|
@ -122,7 +122,7 @@ class Task(object):
|
|||
self.su = utils.boolean(ds.get('su', play.su))
|
||||
self.environment = ds.get('environment', {})
|
||||
self.role_name = role_name
|
||||
self.no_log = utils.boolean(ds.get('no_log', "false"))
|
||||
self.no_log = utils.boolean(ds.get('no_log', "false")) or self.play.no_log
|
||||
self.run_once = utils.boolean(ds.get('run_once', 'false'))
|
||||
|
||||
#Code to allow do until feature in a Task
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue