Chandan Kumar | a564cf3 | 2017-11-16 16:09:38 +0530 | [diff] [blame] | 1 | - hosts: primary |
2 | tasks: | ||||
3 | |||||
4 | - name: Copy files from {{ ansible_user_dir }}/workspace/ on node | ||||
5 | synchronize: | ||||
6 | src: '{{ ansible_user_dir }}/workspace/' | ||||
7 | dest: '{{ zuul.executor.log_root }}' | ||||
8 | mode: pull | ||||
9 | copy_links: true | ||||
10 | verify_host: true | ||||
11 | rsync_opts: | ||||
12 | - --include=/logs/** | ||||
13 | - --include=*/ | ||||
14 | - --exclude=* | ||||
15 | - --prune-empty-dirs |