Files
ansible-role-checkmk-agent/tasks/host-configure.yml
Aaron Guise 8cded0fb55
Some checks failed
CI / lint (push) Failing after 1m48s
CI / Molecule Test (almalinux8) (push) Has been skipped
CI / Molecule Test (almalinux9) (push) Has been skipped
CI / release (push) Has been skipped
CI / notify (push) Has been skipped
fix: Also now using local_action for host config in checkmk 🐛
2025-02-21 07:18:54 +13:00

12 lines
307 B
YAML

---
- 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)