mg
e1c3bebcd9
Co-authored-by: Michael Grote <michael.grote@posteo.de> Reviewed-on: mg/ansible#227 Co-authored-by: mg <michael.grote@posteo.de> Co-committed-by: mg <michael.grote@posteo.de>
10 lines
282 B
YAML
10 lines
282 B
YAML
---
|
|
- name: include ubuntu tasks (determined by "ansible_distribution")
|
|
include_tasks: ubuntu.yml
|
|
when:
|
|
- ansible_distribution == 'Ubuntu'
|
|
|
|
- name: include proxmox tasks (determined by group)
|
|
include_tasks: pve.yml
|
|
when:
|
|
- "'proxmox' in group_names"
|