mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-27 10:40:22 -07:00
more fine tunnign on verbosity
This commit is contained in:
parent
b1e6aaa790
commit
4bc79a746a
2 changed files with 5 additions and 3 deletions
|
@ -70,7 +70,10 @@ class PlaybookExecutor:
|
||||||
entry['plays'] = []
|
entry['plays'] = []
|
||||||
|
|
||||||
i = 1
|
i = 1
|
||||||
for play in pb.get_plays():
|
plays = pb.get_plays()
|
||||||
|
self._display.vv('%d plays in %s' % (len(plays), playbook_path))
|
||||||
|
|
||||||
|
for play in plays:
|
||||||
self._inventory.remove_restriction()
|
self._inventory.remove_restriction()
|
||||||
|
|
||||||
# Create a temporary copy of the play here, so we can run post_validate
|
# Create a temporary copy of the play here, so we can run post_validate
|
||||||
|
@ -127,7 +130,6 @@ class PlaybookExecutor:
|
||||||
|
|
||||||
if entry:
|
if entry:
|
||||||
entrylist.append(entry) # per playbook
|
entrylist.append(entry) # per playbook
|
||||||
self._display.vvvvv('%d plays in %s' % (i, playbook_path))
|
|
||||||
|
|
||||||
if entrylist:
|
if entrylist:
|
||||||
return entrylist
|
return entrylist
|
||||||
|
|
|
@ -39,7 +39,7 @@ class ConnectionBase:
|
||||||
|
|
||||||
def __init__(self, connection_info, *args, **kwargs):
|
def __init__(self, connection_info, *args, **kwargs):
|
||||||
self._connection_info = connection_info
|
self._connection_info = connection_info
|
||||||
self._display = Display(connection_info)
|
self._display = Display(verbosity=connection_info.verbosity)
|
||||||
|
|
||||||
|
|
||||||
def _become_method_supported(self, become_method):
|
def _become_method_supported(self, become_method):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue