1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Don't skip action/__init__.py (#22911)

This commit is contained in:
Matt Martz 2017-03-23 13:40:02 -05:00 committed by GitHub
parent ed52d91249
commit 0ced29c51b
3 changed files with 8 additions and 8 deletions

View file

@ -213,13 +213,13 @@ class ActionBase(with_metaclass(ABCMeta, object)):
# any of these require a true
for condition in [
self._connection.has_pipelining,
self._play_context.pipelining,
module_style == "new", # old style modules do not support pipelining
not C.DEFAULT_KEEP_REMOTE_FILES, # user wants remote files
not wrap_async, # async does not support pipelining
self._play_context.become_method != 'su', # su does not work with pipelining,
# FIXME: we might need to make become_method exclusion a configurable list
self._connection.has_pipelining,
self._play_context.pipelining,
module_style == "new", # old style modules do not support pipelining
not C.DEFAULT_KEEP_REMOTE_FILES, # user wants remote files
not wrap_async, # async does not support pipelining
self._play_context.become_method != 'su', # su does not work with pipelining,
# FIXME: we might need to make become_method exclusion a configurable list
]:
if not condition:
return False

View file

@ -879,6 +879,7 @@ lib/ansible/playbook/taggable.py
lib/ansible/playbook/task.py
lib/ansible/playbook/task_include.py
lib/ansible/plugins/__init__.py
lib/ansible/plugins/action/__init__.py
lib/ansible/plugins/action/asa_config.py
lib/ansible/plugins/action/asa_template.py
lib/ansible/plugins/action/assemble.py

View file

@ -1 +0,0 @@
lib/ansible/plugins/action/__init__.py