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
This commit is contained in:
Ian Wienand 2021-07-29 16:37:03 +10:00
parent 652a161f9a
commit 22b4f74690
1 changed files with 1 additions and 1 deletions

View File

@ -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