2024-10-28 18:17:23 +01:00
|
|
|
---
|
2024-10-28 18:24:29 +01:00
|
|
|
- name: Include user tasks
|
2024-10-28 18:17:23 +01:00
|
|
|
ansible.builtin.include_tasks: user.yml
|
|
|
|
|
2024-10-28 18:24:29 +01:00
|
|
|
- name: Include source tasks
|
2024-10-28 18:17:23 +01:00
|
|
|
ansible.builtin.include_tasks: source.yml
|
2024-10-28 18:24:29 +01:00
|
|
|
when: "source" in rsync_host
|
2024-10-28 18:17:23 +01:00
|
|
|
|
2024-10-28 18:24:29 +01:00
|
|
|
- name: Include destination tasks
|
2024-10-28 18:17:23 +01:00
|
|
|
ansible.builtin.include_tasks: destination.yml
|
2024-10-28 18:24:29 +01:00
|
|
|
when: "destination" in rsync_host
|