From e2619221cf3355fe0d8371876c142148c5cbe1b7 Mon Sep 17 00:00:00 2001 From: Alexander Todorov Date: Tue, 23 Jun 2020 12:38:36 +0300 Subject: [PATCH] CI: print the list of RPMs on the system this will make it easier to figure out what was there before installing SUT and help in debugging issues related to dependencies. --- schutzbot/ci_details.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/schutzbot/ci_details.sh b/schutzbot/ci_details.sh index 28f5b329d..b8d10f188 100755 --- a/schutzbot/ci_details.sh +++ b/schutzbot/ci_details.sh @@ -25,4 +25,8 @@ CI MACHINE SPECS ------------------------------------------------------------------------------ EOF -echo -e "\033[0m" \ No newline at end of file +echo -e "\033[0m" + +echo "List of installed packages:" +rpm -qa | sort +echo "------------------------------------------------------------------------------"