runtime: Add podman to data collection script

Updated `kata-collect-data.sh` to gather basic podman details.

Fixes: #243.

Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
This commit is contained in:
James O. D. Hunt 2020-06-01 10:34:32 +01:00
parent ebbfa321ae
commit ca8acf5895

View File

@ -356,6 +356,11 @@ show_container_mgr_details()
run_cmd_and_show_quoted_output "" "cat /etc/containerd/config.toml"
fi
if have_cmd "podman"; then
subheading "podman"
run_cmd_and_show_quoted_output "" "podman --version"
fi
separator
}