You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
411 B
15 lines
411 B
- hosts: primary |
|
tasks: |
|
|
|
- name: Copy files from {{ ansible_user_dir }}/workspace/ on node |
|
synchronize: |
|
src: '{{ ansible_user_dir }}/workspace/' |
|
dest: '{{ zuul.executor.log_root }}' |
|
mode: pull |
|
copy_links: true |
|
verify_host: true |
|
rsync_opts: |
|
- --include=/logs/** |
|
- --include=*/ |
|
- --exclude=* |
|
- --prune-empty-dirs
|
|
|