playbooks_reuse_roles.rst long and shorthand example actually made equivalent. (#48339)
This commit is contained in:
parent
42c6ed7078
commit
e2bba149d6
1 changed files with 5 additions and 3 deletions
|
@ -173,9 +173,11 @@ Finally, you may wish to assign tags to the tasks inside the roles you specify.
|
|||
|
||||
- hosts: webservers
|
||||
roles:
|
||||
- role: bar
|
||||
tags: ["foo"]
|
||||
# using YAML shorthand, this is equivalent to the above
|
||||
- role: foo
|
||||
tags:
|
||||
- bar
|
||||
- baz
|
||||
# using YAML shorthand, this is equivalent to the above:
|
||||
- { role: foo, tags: ["bar", "baz"] }
|
||||
|
||||
Or, again, using the newer syntax::
|
||||
|
|
Loading…
Reference in a new issue