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'] = []
|
||||
|
||||
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()
|
||||
|
||||
# Create a temporary copy of the play here, so we can run post_validate
|
||||
|
@ -127,7 +130,6 @@ class PlaybookExecutor:
|
|||
|
||||
if entry:
|
||||
entrylist.append(entry) # per playbook
|
||||
self._display.vvvvv('%d plays in %s' % (i, playbook_path))
|
||||
|
||||
if entrylist:
|
||||
return entrylist
|
||||
|
|
|
@ -39,7 +39,7 @@ class ConnectionBase:
|
|||
|
||||
def __init__(self, connection_info, *args, **kwargs):
|
||||
self._connection_info = connection_info
|
||||
self._display = Display(connection_info)
|
||||
self._display = Display(verbosity=connection_info.verbosity)
|
||||
|
||||
|
||||
def _become_method_supported(self, become_method):
|
||||
|
|
Loading…
Reference in a new issue