Adrià Vilanova MartÃnez | a8341d0 | 2022-01-17 00:18:30 +0100 | [diff] [blame^] | 1 | - name: Is there a cws-log.txt |
2 | register: stat_log | ||||
3 | stat: | ||||
4 | path: "{{ zuul.project.src_dir }}/cws-log.txt" | ||||
5 | |||||
6 | - name: Store on executor | ||||
7 | when: stat_log.stat.exists | ||||
8 | synchronize: | ||||
9 | mode: pull | ||||
10 | src: "{{ zuul.project.src_dir }}/cws-log.txt" | ||||
11 | dest: "{{ zuul.executor.log_root }}/cws-log.txt" | ||||
12 | verify_host: true | ||||
13 | owner: no | ||||
14 | group: no |