13 lines
247 B
YAML
13 lines
247 B
YAML
---
|
|
- name: Group EdgeOS hosts
|
|
when: ansible_kernel.endswith('UBNT')
|
|
changed_when: false
|
|
group_by:
|
|
key: edgeos
|
|
|
|
- name: Group supported Linux hosts
|
|
when: ansible_distribution == "Rocky"
|
|
changed_when: false
|
|
group_by:
|
|
key: linux
|