mg
4e83d8d887
Co-authored-by: Michael Grote <michael.grote@posteo.de> Reviewed-on: mg/ansible#225 Co-authored-by: mg <michael.grote@posteo.de> Co-committed-by: mg <michael.grote@posteo.de>
18 lines
582 B
YAML
18 lines
582 B
YAML
---
|
|
- name: include ubuntu tasks (determined by "ansible_distribution")
|
|
include_tasks: ubuntu.yml
|
|
when:
|
|
- ansible_distribution == 'Ubuntu'
|
|
- manage_sources_apt_proxy | length > 0
|
|
|
|
- name: include Linux Mint tasks (determined by "ansible_distribution")
|
|
include_tasks: mint.yml
|
|
when:
|
|
- ansible_distribution == 'Linux Mint'
|
|
- manage_sources_apt_proxy | length > 0
|
|
|
|
- name: include proxmox tasks (determined by group)
|
|
include_tasks: proxmox.yml
|
|
when:
|
|
- "'proxmox' in group_names"
|
|
- manage_sources_apt_proxy | length > 0
|