summaryrefslogtreecommitdiff
path: root/playbooks
diff options
context:
space:
mode:
authorIan Wienand <iwienand@redhat.com>2021-07-29 16:37:03 +1000
committerIan Wienand <iwienand@redhat.com>2021-07-29 16:39:19 +1000
commit22b4f746900f530d53ebfc9bb15a983b010d7dd3 (patch)
treee6d5143d575ce8c608e849772f2937b2f4b29fae /playbooks
parent652a161f9a169866b29c9c223923ee3d9744036c (diff)
downloadironic-22b4f746900f530d53ebfc9bb15a983b010d7dd3.tar.gz
ci-workarounds/get_extra_logging.yaml : avoid grep failure
If this grep doesn't match, the task returns a failure and it causes the job to abort with POST_FAILURE. I think more info is generally helpful and you can always grep "netstat" on the file manually; thus remove the grep to avoid suprious failure. Change-Id: I189a0a8be25cb12e946d8ac58667b287f9698064
Diffstat (limited to 'playbooks')
-rw-r--r--playbooks/ci-workarounds/get_extra_logging.yaml2
1 files changed, 1 insertions, 1 deletions
diff --git a/playbooks/ci-workarounds/get_extra_logging.yaml b/playbooks/ci-workarounds/get_extra_logging.yaml
index 5f6a1f8fe..29454585a 100644
--- a/playbooks/ci-workarounds/get_extra_logging.yaml
+++ b/playbooks/ci-workarounds/get_extra_logging.yaml
@@ -4,5 +4,5 @@
shell: "journalctl -t in.tftpd > {{ zuul_output_dir }}/logs/tftpd-journal.txt"
become: yes
- name: Get network connection information for ironic process
- shell: "netstat -apn |grep ironic > {{ zuul_output_dir }}/logs/post-job-network-connections.txt"
+ shell: "netstat -apn > {{ zuul_output_dir }}/logs/post-job-network-connections.txt"
become: yes