InterviewSolution
Saved Bookmarks
| 1. |
Explain how you will copy files recursively onto a target host? |
|
Answer» There’s a copy module that has a recursive PARAMETER in it but there’s SOMETHING CALLED synchronize which is more efficient for large numbers of files. For EXAMPLE: - synchronize: src: /first/absolute/path dest: /second/absolute/path delegate_to: "{{ inventory_hostname }}" |
|