1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-07-04 17:48:52 +00:00

Add play to the parent object structures for inheritence in v2

This commit is contained in:
James Cammarata 2015-04-30 11:13:43 -05:00
parent fb96173d10
commit aafda44bb3
9 changed files with 98 additions and 44 deletions

View file

@ -1,10 +1,17 @@
- hosts: localhost
gather_facts: no
vars:
a: "tags"
tags:
- play
tasks:
- block:
- debug: msg="this is the tagged block"
tags:
- block
- include: include.yml
tags:
- include
- block:
- debug: msg="tagged debug from second block"
tags: