19 lines
567 B
YAML
19 lines
567 B
YAML
---
|
|
- name: Install Hermes ACP prerequisites
|
|
ansible.builtin.import_tasks: install.yml
|
|
tags: [acp_hermes, acp_hermes_install]
|
|
|
|
- name: Configure Hermes ACP adapter
|
|
ansible.builtin.import_tasks: config.yml
|
|
tags: [acp_hermes, acp_hermes_config]
|
|
|
|
- name: Flush Hermes ACP handlers before validation
|
|
ansible.builtin.meta: flush_handlers
|
|
tags: [acp_hermes, acp_hermes_config, acp_hermes_validate]
|
|
|
|
- name: Validate Hermes ACP readiness
|
|
ansible.builtin.import_tasks: validate.yml
|
|
tags: [acp_hermes, acp_hermes_validate]
|
|
when:
|
|
- not ansible_check_mode
|