remove syncoid, switch to rsync #221

Merged
mg merged 132 commits from sanoid_weg into master 2024-10-31 12:01:46 +01:00
3 changed files with 8 additions and 2 deletions
Showing only changes of commit ae17ae921b - Show all commits

View file

@ -1,4 +1,7 @@
--- ---
### mgrote_rsync
rsync_host_role: destination
### mgrote_netplan ### mgrote_netplan
netplan_configure: false netplan_configure: false

View file

@ -1,4 +1,7 @@
--- ---
### mgrote_rsync
rsync_host_role: source
### mgrote_netplan ### mgrote_netplan
netplan_configure: false netplan_configure: false

View file

@ -4,8 +4,8 @@
- name: Include source tasks - name: Include source tasks
ansible.builtin.include_tasks: source.yml ansible.builtin.include_tasks: source.yml
when: "'source' in rsync_host" when: "'source' in rsync_host_role"
- name: Include destination tasks - name: Include destination tasks
ansible.builtin.include_tasks: destination.yml ansible.builtin.include_tasks: destination.yml
when: "'destination' in rsync_host " when: "'destination' in rsync_host_role"