Merge "Add 2 minute timeout for repoquery"

This commit is contained in:
Zuul 2021-04-30 12:28:10 +00:00 committed by Gerrit Code Review
commit 9111b1c1bd
1 changed files with 4 additions and 3 deletions

View File

@ -222,10 +222,11 @@ artcl_commands:
cmd: "{{ ansible_pkg_mgr }} module list --enabled" cmd: "{{ ansible_pkg_mgr }} module list --enabled"
when: ansible_distribution_major_version|int >= 8 when: ansible_distribution_major_version|int >= 8
record_available_packages: record_available_packages:
# the timeout is like a fail-safe from collect_logs point of view,
# we encountered an issue when repolist query took several minutes
# which lead to timeouts and unfinished log collections
cmd: | cmd: |
for i in `{{ ansible_pkg_mgr }} repolist enabled -v | grep Repo-id | awk '{print $3}' | awk -F / '{print $1}'`;do timeout 120 repoquery -a --qf "%{ui_from_repo} %{name}" | sort
repoquery --repoid $i -a
done
capture_file: /var/log/extra/all_available_packages.txt capture_file: /var/log/extra/all_available_packages.txt
selinux: selinux:
cmd: | cmd: |