mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-24 03:11:24 -07:00
Misc cleanup -- moved function out of utils, removed debug statement.
This commit is contained in:
parent
19a2fc00dc
commit
706cfd9ade
3 changed files with 4 additions and 9 deletions
|
@ -239,7 +239,10 @@ class PlaybookCallbacks(object):
|
|||
pass
|
||||
|
||||
def on_task_start(self, name, is_conditional):
|
||||
print banner(utils.task_start_msg(name, is_conditional))
|
||||
msg = "TASK: [%s]" % name
|
||||
if is_conditional:
|
||||
msg = "NOTIFIED: [%s]" % name
|
||||
print banner(msg)
|
||||
|
||||
def on_vars_prompt(self, varname, private=True):
|
||||
msg = 'input for %s: ' % varname
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue