dsfg
Some checks failed
ansible-lint / gitleaks (pull_request) Successful in 7s
ansible-lint / Ansible Lint (pull_request) Failing after 1m3s

This commit is contained in:
Michael Grote 2024-10-28 18:57:35 +01:00
parent 53b675f325
commit ae17ae921b
3 changed files with 8 additions and 2 deletions

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"