kolla-ansible/ansible/roles/prechecks/tasks/main.yml
Michal Nasiadka dcf5a8b65f Fix var-spacing
ansible-lint introduced var-spacing - let's fix our code.

Change-Id: I0d8aaf3c522a5a6a5495032f6dbed8a2be0251f0
2022-07-25 22:15:15 +02:00

24 lines
526 B
YAML

---
- import_tasks: inventory_checks.yml
- include_tasks: host_os_checks.yml
when: prechecks_enable_host_os_checks | bool
- include_tasks: timesync_checks.yml
when:
- inventory_hostname not in groups['deployment'] | default([])
- import_tasks: datetime_checks.yml
- include_tasks: port_checks.yml
when:
- inventory_hostname not in groups['deployment'] | default([])
- import_tasks: service_checks.yml
- import_tasks: package_checks.yml
- import_tasks: user_checks.yml
- import_tasks: database_checks.yml