Change parameter from pattern to name for playbook_on_play_start in example callback plugins.

This commit is contained in:
Chris Church 2014-07-01 17:06:44 -04:00
parent 955dadf743
commit afbc7f8a0f
3 changed files with 5 additions and 5 deletions

View file

@ -108,7 +108,7 @@ class CallbackModule(object):
def playbook_on_not_import_for_host(self, host, missing_file):
log(host, 'NOTIMPORTED', missing_file)
def playbook_on_play_start(self, pattern):
def playbook_on_play_start(self, name):
pass
def playbook_on_stats(self, stats):