2021-02-05 10:51:39 +01:00
|
|
|
---
|
|
|
|
- name: include ubuntu tasks (determined by "ansible_distribution")
|
|
|
|
include_tasks: ubuntu.yml
|
2021-10-20 19:48:17 +02:00
|
|
|
when:
|
|
|
|
- ansible_distribution == 'Ubuntu'
|
|
|
|
- manage_sources_apt_proxy | length > 0
|
2020-08-18 11:57:53 +02:00
|
|
|
|
2021-06-14 08:34:02 +02:00
|
|
|
- name: include Linux Mint tasks (determined by "ansible_distribution")
|
|
|
|
include_tasks: mint.yml
|
2021-10-20 19:48:17 +02:00
|
|
|
when:
|
|
|
|
- ansible_distribution == 'Linux Mint'
|
|
|
|
- manage_sources_apt_proxy | length > 0
|
2021-06-14 08:34:02 +02:00
|
|
|
|
2021-02-05 10:51:39 +01:00
|
|
|
- name: include proxmox tasks (determined by group)
|
|
|
|
include_tasks: proxmox.yml
|
2021-10-20 19:48:17 +02:00
|
|
|
when:
|
|
|
|
- "'proxmox' in group_names"
|
|
|
|
- manage_sources_apt_proxy | length > 0
|