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'
|
2022-01-15 11:18:56 +01:00
|
|
|
- manage_sources_apt_proxy is defined
|
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'
|
2022-01-15 11:18:56 +01:00
|
|
|
- manage_sources_apt_proxy is defined
|
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"
|
2022-01-15 11:18:56 +01:00
|
|
|
- manage_sources_apt_proxy is defined
|
2022-07-22 13:12:23 +02:00
|
|
|
|
|
|
|
- name: include extra repo tasks
|
|
|
|
include_tasks: extra_repos.yml
|
|
|
|
when:
|
|
|
|
- manage_sources_extra_repos is defined
|