|
|
|
@ -65,6 +65,8 @@ def main(args):
|
|
|
|
|
help="set additional key=value variables from the CLI")
|
|
|
|
|
parser.add_option('-t', '--tags', dest='tags', default='all',
|
|
|
|
|
help="only run plays and tasks tagged with these values")
|
|
|
|
|
parser.add_option('--skip-tags', dest='skip_tags',
|
|
|
|
|
help="only run plays and tasks whose tags do not match these values")
|
|
|
|
|
parser.add_option('--syntax-check', dest='syntax', action='store_true',
|
|
|
|
|
help="perform a syntax check on the playbook, but do not execute it")
|
|
|
|
|
parser.add_option('--list-tasks', dest='listtasks', action='store_true',
|
|
|
|
@ -97,6 +99,9 @@ def main(args):
|
|
|
|
|
else:
|
|
|
|
|
extra_vars = utils.parse_kv(options.extra_vars)
|
|
|
|
|
only_tags = options.tags.split(",")
|
|
|
|
|
skip_tags = options.skip_tags
|
|
|
|
|
if options.skip_tags is not None:
|
|
|
|
|
skip_tags = options.skip_tags.split(",")
|
|
|
|
|
|
|
|
|
|
for playbook in args:
|
|
|
|
|
if not os.path.exists(playbook):
|
|
|
|
@ -136,6 +141,7 @@ def main(args):
|
|
|
|
|
extra_vars=extra_vars,
|
|
|
|
|
private_key_file=options.private_key_file,
|
|
|
|
|
only_tags=only_tags,
|
|
|
|
|
skip_tags=skip_tags,
|
|
|
|
|
check=options.check,
|
|
|
|
|
diff=options.diff
|
|
|
|
|
)
|
|
|
|
@ -156,13 +162,20 @@ def main(args):
|
|
|
|
|
print ' %s' % host
|
|
|
|
|
if options.listtasks:
|
|
|
|
|
matched_tags, unmatched_tags = play.compare_tags(pb.only_tags)
|
|
|
|
|
|
|
|
|
|
# Remove skipped tasks
|
|
|
|
|
matched_tags = matched_tags - set(pb.skip_tags)
|
|
|
|
|
|
|
|
|
|
unmatched_tags.discard('all')
|
|
|
|
|
unknown_tags = set(pb.only_tags) - (matched_tags | unmatched_tags)
|
|
|
|
|
unknown_tags = ((set(pb.only_tags) | set(pb.skip_tags)) -
|
|
|
|
|
(matched_tags | unmatched_tags))
|
|
|
|
|
|
|
|
|
|
if unknown_tags:
|
|
|
|
|
continue
|
|
|
|
|
print ' play #%d (%s): task count=%d' % (playnum, label, len(play.tasks()))
|
|
|
|
|
for task in play.tasks():
|
|
|
|
|
if set(task.tags).intersection(pb.only_tags):
|
|
|
|
|
if (set(task.tags).intersection(pb.only_tags) and not
|
|
|
|
|
set(task.tags).intersection(pb.skip_tags)):
|
|
|
|
|
if getattr(task, 'name', None) is not None:
|
|
|
|
|
# meta tasks have no names
|
|
|
|
|
print ' %s' % task.name
|
|
|
|
|