summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Evich <cevich@redhat.com>2022-01-28 15:09:49 -0500
committerChris Evich <cevich@redhat.com>2022-02-11 14:49:43 -0500
commit1e3115cf42b3abc2cd62427e59ba71851da29b12 (patch)
treefe32b77c1cac2153b98975e02023c264c05ccfa5
parent66a3be3709ae67ec14c0ecdfee3847066c90c9ae (diff)
downloadpodman-1e3115cf42b3abc2cd62427e59ba71851da29b12.tar.gz
podman-1e3115cf42b3abc2cd62427e59ba71851da29b12.tar.bz2
podman-1e3115cf42b3abc2cd62427e59ba71851da29b12.zip
Cirrus: Log netavark/aardvark binary build info.
Enabled by: * https://github.com/containers/netavark/pull/191 * https://github.com/containers/aardvark-dns/pull/36 Signed-off-by: Chris Evich <cevich@redhat.com>
-rwxr-xr-xcontrib/cirrus/logcollector.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/contrib/cirrus/logcollector.sh b/contrib/cirrus/logcollector.sh
index 38a15ded1..0cfbf7135 100755
--- a/contrib/cirrus/logcollector.sh
+++ b/contrib/cirrus/logcollector.sh
@@ -74,6 +74,19 @@ case $1 in
echo "Cgroups: " $(stat -f -c %T /sys/fs/cgroup)
# Any not-present packages will be listed as such
$PKG_LST_CMD "${PKG_NAMES[@]}" | sort -u
+
+ # TODO: Remove this once netavark/aardvark-dns packages are used
+ if [[ "$TEST_ENVIRON" =~ netavark ]]; then
+ _npath=/usr/local/libexec/podman/
+ for name in netavark aardvark-dns; do
+ echo "$name binary details:"
+ if [[ -r "$_npath/${name}.info" ]]; then
+ cat "$_npath/${name}.info"
+ else
+ echo "WARNING: $_npath/${name}.info not found."
+ fi
+ done
+ fi
;;
time)
# Assumed to be empty/undefined outside of Cirrus-CI (.cirrus.yml)