Change to posix.synchronize for way faster transfer
This commit is contained in:
parent
43919e263e
commit
f1f2fe990a
@ -37,9 +37,11 @@
|
||||
tags: config
|
||||
|
||||
- name: Copy new files and directories
|
||||
ansible.builtin.copy:
|
||||
ansible.posix.synchronize:
|
||||
src: "{{ item }}"
|
||||
dest: "~/"
|
||||
owner: false
|
||||
group: false
|
||||
loop:
|
||||
- ".config"
|
||||
- ".face"
|
||||
@ -53,9 +55,11 @@
|
||||
tags: config
|
||||
|
||||
- name: Copy new files and directories (root)
|
||||
ansible.builtin.copy:
|
||||
ansible.posix.synchronize:
|
||||
src: "{{ item }}"
|
||||
dest: "/"
|
||||
owner: false
|
||||
group: false
|
||||
loop:
|
||||
- "etc"
|
||||
- "usr"
|
||||
|
Loading…
Reference in New Issue
Block a user