What we are running is actually a "play" (multiple plays per playbook) so rename the function to make it more clear
This commit is contained in:
parent
adf1492da2
commit
ce85222fa6
1 changed files with 2 additions and 2 deletions
|
@ -161,7 +161,7 @@ class PlayBook(object):
|
||||||
# loop through all patterns and run them
|
# loop through all patterns and run them
|
||||||
self.callbacks.on_start()
|
self.callbacks.on_start()
|
||||||
for pattern in self.playbook:
|
for pattern in self.playbook:
|
||||||
self._run_pattern(pattern)
|
self._run_play(pattern)
|
||||||
|
|
||||||
# summarize the results
|
# summarize the results
|
||||||
results = {}
|
results = {}
|
||||||
|
@ -389,7 +389,7 @@ class PlayBook(object):
|
||||||
x['run'] = []
|
x['run'] = []
|
||||||
x['run'].append(host)
|
x['run'].append(host)
|
||||||
|
|
||||||
def _run_pattern(self, pg):
|
def _run_play(self, pg):
|
||||||
'''
|
'''
|
||||||
run a list of tasks for a given pattern, in order
|
run a list of tasks for a given pattern, in order
|
||||||
'''
|
'''
|
||||||
|
|
Loading…
Reference in a new issue