parent
1b74102ab3
commit
08ad05c83b
2 changed files with 12 additions and 15 deletions
|
@ -122,6 +122,9 @@ class PlaybookExecutor:
|
||||||
entry['plays'].append(p)
|
entry['plays'].append(p)
|
||||||
|
|
||||||
else:
|
else:
|
||||||
|
# make sure the tqm has callbacks loaded
|
||||||
|
self._tqm.load_callbacks()
|
||||||
|
|
||||||
# we are actually running plays
|
# we are actually running plays
|
||||||
for batch in self._get_serialized_batches(new_play):
|
for batch in self._get_serialized_batches(new_play):
|
||||||
if len(batch) == 0:
|
if len(batch) == 0:
|
||||||
|
|
|
@ -61,6 +61,7 @@ class TaskQueueManager:
|
||||||
self._stats = AggregateStats()
|
self._stats = AggregateStats()
|
||||||
self.passwords = passwords
|
self.passwords = passwords
|
||||||
self._stdout_callback = stdout_callback
|
self._stdout_callback = stdout_callback
|
||||||
|
self._callback_plugins = []
|
||||||
|
|
||||||
# a special flag to help us exit cleanly
|
# a special flag to help us exit cleanly
|
||||||
self._terminated = False
|
self._terminated = False
|
||||||
|
@ -115,21 +116,19 @@ class TaskQueueManager:
|
||||||
for handler in handler_list:
|
for handler in handler_list:
|
||||||
self._notified_handlers[handler.get_name()] = []
|
self._notified_handlers[handler.get_name()] = []
|
||||||
|
|
||||||
def _load_callbacks(self, stdout_callback):
|
def load_callbacks(self):
|
||||||
'''
|
'''
|
||||||
Loads all available callbacks, with the exception of those which
|
Loads all available callbacks, with the exception of those which
|
||||||
utilize the CALLBACK_TYPE option. When CALLBACK_TYPE is set to 'stdout',
|
utilize the CALLBACK_TYPE option. When CALLBACK_TYPE is set to 'stdout',
|
||||||
only one such callback plugin will be loaded.
|
only one such callback plugin will be loaded.
|
||||||
'''
|
'''
|
||||||
|
|
||||||
loaded_plugins = []
|
|
||||||
|
|
||||||
stdout_callback_loaded = False
|
stdout_callback_loaded = False
|
||||||
if stdout_callback is None:
|
if self._stdout_callback is None:
|
||||||
stdout_callback = C.DEFAULT_STDOUT_CALLBACK
|
self._stdout_callback = C.DEFAULT_STDOUT_CALLBACK
|
||||||
|
|
||||||
if stdout_callback not in callback_loader:
|
if self._stdout_callback not in callback_loader:
|
||||||
raise AnsibleError("Invalid callback for stdout specified: %s" % stdout_callback)
|
raise AnsibleError("Invalid callback for stdout specified: %s" % self._stdout_callback)
|
||||||
|
|
||||||
for callback_plugin in callback_loader.all(class_only=True):
|
for callback_plugin in callback_loader.all(class_only=True):
|
||||||
if hasattr(callback_plugin, 'CALLBACK_VERSION') and callback_plugin.CALLBACK_VERSION >= 2.0:
|
if hasattr(callback_plugin, 'CALLBACK_VERSION') and callback_plugin.CALLBACK_VERSION >= 2.0:
|
||||||
|
@ -139,17 +138,15 @@ class TaskQueueManager:
|
||||||
callback_type = getattr(callback_plugin, 'CALLBACK_TYPE', None)
|
callback_type = getattr(callback_plugin, 'CALLBACK_TYPE', None)
|
||||||
(callback_name, _) = os.path.splitext(os.path.basename(callback_plugin._original_path))
|
(callback_name, _) = os.path.splitext(os.path.basename(callback_plugin._original_path))
|
||||||
if callback_type == 'stdout':
|
if callback_type == 'stdout':
|
||||||
if callback_name != stdout_callback or stdout_callback_loaded:
|
if callback_name != self._stdout_callback or stdout_callback_loaded:
|
||||||
continue
|
continue
|
||||||
stdout_callback_loaded = True
|
stdout_callback_loaded = True
|
||||||
elif C.DEFAULT_CALLBACK_WHITELIST is None or callback_name not in C.DEFAULT_CALLBACK_WHITELIST:
|
elif C.DEFAULT_CALLBACK_WHITELIST is None or callback_name not in C.DEFAULT_CALLBACK_WHITELIST:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
loaded_plugins.append(callback_plugin(self._display))
|
self._callback_plugins.append(callback_plugin(self._display))
|
||||||
else:
|
else:
|
||||||
loaded_plugins.append(callback_plugin())
|
self._callback_plugins.append(callback_plugin())
|
||||||
|
|
||||||
return loaded_plugins
|
|
||||||
|
|
||||||
def _do_var_prompt(self, varname, private=True, prompt=None, encrypt=None, confirm=False, salt_size=None, salt=None, default=None):
|
def _do_var_prompt(self, varname, private=True, prompt=None, encrypt=None, confirm=False, salt_size=None, salt=None, default=None):
|
||||||
|
|
||||||
|
@ -204,9 +201,6 @@ class TaskQueueManager:
|
||||||
are done with the current task).
|
are done with the current task).
|
||||||
'''
|
'''
|
||||||
|
|
||||||
# load callback plugins
|
|
||||||
self._callback_plugins = self._load_callbacks(self._stdout_callback)
|
|
||||||
|
|
||||||
if play.vars_prompt:
|
if play.vars_prompt:
|
||||||
for var in play.vars_prompt:
|
for var in play.vars_prompt:
|
||||||
if 'name' not in var:
|
if 'name' not in var:
|
||||||
|
|
Loading…
Reference in a new issue