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:
parent
fb96173d10
commit
aafda44bb3
9 changed files with 98 additions and 44 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue