Files
ansible-role-checkmk-agent/tasks/host-configure.yml

12 lines
307 B
YAML
Raw Normal View History

2024-01-09 14:33:55 +13:00
---
- include_tasks: host-configure/legacy.yml
when: >
cmk_add_host and
(cmk_major | int <= 2 and
cmk_minor | int < 2 or cmk_force_install)
- include_tasks: host-configure/modern.yml
when: >
cmk_add_host and
(cmk_major | int >= 2 and
cmk_minor | int >= 2 or cmk_force_install)