|
|
@ -163,13 +163,12 @@ def main(args):
|
|
|
|
unmatched_tags.discard('all')
|
|
|
|
unmatched_tags.discard('all')
|
|
|
|
unknown_tags = set(pb.only_tags) - (matched_tags | unmatched_tags)
|
|
|
|
unknown_tags = set(pb.only_tags) - (matched_tags | unmatched_tags)
|
|
|
|
if unknown_tags:
|
|
|
|
if unknown_tags:
|
|
|
|
msg = 'tag(s) not found in playbook: %s. possible values: %s'
|
|
|
|
continue
|
|
|
|
unknown = ','.join(sorted(unknown_tags))
|
|
|
|
|
|
|
|
unmatched = ','.join(sorted(unmatched_tags))
|
|
|
|
|
|
|
|
raise errors.AnsibleError(msg % (unknown, unmatched))
|
|
|
|
|
|
|
|
print ' play #%d (%s): task count=%d' % (playnum, label, len(play.tasks()))
|
|
|
|
print ' play #%d (%s): task count=%d' % (playnum, label, len(play.tasks()))
|
|
|
|
for task in play.tasks():
|
|
|
|
for task in play.tasks():
|
|
|
|
if set(task.tags).intersection(pb.only_tags):
|
|
|
|
if set(task.tags).intersection(pb.only_tags):
|
|
|
|
|
|
|
|
if getattr(task, 'name', None) is not None:
|
|
|
|
|
|
|
|
# meta tasks have no names
|
|
|
|
print ' %s' % task.name
|
|
|
|
print ' %s' % task.name
|
|
|
|
print ''
|
|
|
|
print ''
|
|
|
|
continue
|
|
|
|
continue
|
|
|
|