mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #1893 from bct/directory-organization-fix
Make diagram of Directory Organization best practice match the text.
This commit is contained in:
commit
3e75219f28
1 changed files with 12 additions and 12 deletions
|
@ -31,20 +31,20 @@ Playbooks should be organized like this::
|
|||
|
||||
# root of source control repository
|
||||
├── acme/
|
||||
│ ├── files/
|
||||
│ │ └── some_file_path_foo.conf
|
||||
│ ├── handlers/
|
||||
│ │ └── main.yml
|
||||
│ ├── tasks/
|
||||
│ │ ├── setup.yml
|
||||
│ │ └── stop.yml
|
||||
│ ├── templates/
|
||||
│ │ ├── etc_acme_conf_acme.conf
|
||||
│ │ └── etc_other_conf_other.conf
|
||||
│ ├── vars/
|
||||
│ │ └── main.yml
|
||||
│ ├── setup.yml
|
||||
│ └── stop.yml
|
||||
├── files/
|
||||
│ └── some_file_path_foo.conf
|
||||
├── handlers/
|
||||
│ └── main.yml
|
||||
├── tasks/
|
||||
│ ├── setup.yml
|
||||
│ └── stop.yml
|
||||
├── templates/
|
||||
│ ├── etc_acme_conf_acme.conf
|
||||
│ └── etc_other_conf_other.conf
|
||||
├── vars/
|
||||
│ └── main.yml
|
||||
└── global_vars.yml
|
||||
|
||||
Any directories or files not needed can be omitted. Not all modules
|
||||
|
|
Loading…
Reference in a new issue