Salt
d8fe08f879
Originally, I had broken out the other site_*.yml files in an attempt to organize the individual portions of site.yml out, as it was growing long. But now I have a solution to its length and its consistency that doesn't involve using multiple playbooks, so I may as well merge everything back in again.
27 lines
1.0 KiB
YAML
Executable File
27 lines
1.0 KiB
YAML
Executable File
#!/usr/bin/env ansible-playbook
|
|
# vim:ft=ansible:
|
|
---
|
|
# Local configuration goes first
|
|
- import_playbook: "{{ item }}"
|
|
loop: "{{ lookup('fileglob' 'local_*.yml') }}"
|
|
# Then we run against all hosts, performing foundational tasks
|
|
- import_playbook: all.yml
|
|
# Then we narrow things down to device-specific configuration
|
|
- import_playbook: "{{ item }}"
|
|
loop: "{{ lookup('fileglob' 'device_types_*.yml') }}"
|
|
- import_playbook: "{{ item }}"
|
|
loop: "{{ lookup('fileglob' 'platforms_*.yml') }}"
|
|
- import_playbook: "{{ item }}"
|
|
loop: "{{ lookup('fileglob' 'manufacturers_*.yml') }}"
|
|
- import_playbook: "{{ item }}"
|
|
loop: "{{ lookup('fileglob' 'tags_.yml') }}"
|
|
- import_playbook: "{{ item }}"
|
|
loop: "{{ lookup('fileglob' 'device_roles_*.yml') }}"
|
|
# And finally we configure the core services of the machine
|
|
- import_playbook: "{{ item }}"
|
|
loop: "{{ lookup('fileglob' 'home_*.yml') }}"
|
|
- import_playbook: "{{ item }}"
|
|
loop: "{{ lookup('fileglob' 'prod_*.yml') }}"
|
|
# Once that's all done, we clean up
|
|
- import_playbook: cleanup.yml
|