blob: 9500f96d849f13e74df4b771fb4cdedc82608410 [file] [log] [blame]
Adrià Vilanova Martínezd3620d02022-06-01 14:39:40 +02001- name: Is there a cws-log.txt
2 register: stat_log
3 stat:
4 path: "{{ workingDirectory }}/cws-log.txt"
5
6- name: Store on executor
7 when: stat_log.stat.exists
8 synchronize:
9 mode: pull
10 src: "{{ workingDirectory }}/cws-log.txt"
11 dest: "{{ zuul.executor.log_root }}/cws-log.txt"
12 verify_host: true
13 owner: no
14 group: no