mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Mention defaults subdirectory in a more visible way
All examples do not show it, so only someone reading the doc from end to end would know about it.
This commit is contained in:
parent
267b3fb7b7
commit
8fb14db802
2 changed files with 4 additions and 0 deletions
|
@ -51,6 +51,8 @@ The top level of the directory would contain files and directories like so::
|
|||
foo.sh # <-- script files for use with the script resource
|
||||
vars/ #
|
||||
main.yml # <-- variables associated with this role
|
||||
defaults/ #
|
||||
main.yml # <-- default lower priority variables for this role
|
||||
meta/ #
|
||||
main.yml # <-- role dependencies
|
||||
|
||||
|
|
|
@ -172,6 +172,7 @@ Example project structure::
|
|||
tasks/
|
||||
handlers/
|
||||
vars/
|
||||
defaults/
|
||||
meta/
|
||||
webservers/
|
||||
files/
|
||||
|
@ -179,6 +180,7 @@ Example project structure::
|
|||
tasks/
|
||||
handlers/
|
||||
vars/
|
||||
defaults/
|
||||
meta/
|
||||
|
||||
In a playbook, it would look like this::
|
||||
|
|
Loading…
Reference in a new issue