From cee2c232de5cdf6c090d78b8afd4801f68b1f405 Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Mon, 3 Feb 2020 20:23:51 +0100 Subject: ele-router: upgrade to openwrt 19.07.1 --- roles/openwrt/image/tasks/main.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'roles/openwrt/image/tasks/main.yml') diff --git a/roles/openwrt/image/tasks/main.yml b/roles/openwrt/image/tasks/main.yml index 17a31ba1..5a3f332b 100644 --- a/roles/openwrt/image/tasks/main.yml +++ b/roles/openwrt/image/tasks/main.yml @@ -39,11 +39,17 @@ openwrt_output_images: "{{ '[\"' + openwrt_output_dir + '/' + openwrt_output_image_name_base + '-' + (openwrt_output_image_suffixes | join('\", \"' + openwrt_output_dir + '/' + openwrt_output_image_name_base + '-')) + '\"]' }}" always: - - name: save build-log to output directory + - name: save stdout build-log to output directory when: openwrt_build is defined copy: content: "{{ openwrt_build.stdout }}\n" - dest: "{{ openwrt_output_dir }}/build.log" + dest: "{{ openwrt_output_dir }}/build-stdout.log" + + - name: save stderr build-log to output directory + when: openwrt_build is defined + copy: + content: "{{ openwrt_build.stderr }}\n" + dest: "{{ openwrt_output_dir }}/build-stderr.log" - name: Delete the temporary build directory file: -- cgit v1.2.3