From 7d3fff467f0849fae79df5b2b445571e9bbad4ca Mon Sep 17 00:00:00 2001 From: Qian Cai Date: Thu, 17 Sep 2020 11:39:37 -0400 Subject: [PATCH] scripts: Don't use hard-coded crio config In show_container_mgr_details(), it used "cat /etc/crio/crio.conf" instead of "crio config". Fixes: #2964 Signed-off-by: Qian Cai --- data/kata-collect-data.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/kata-collect-data.sh.in b/data/kata-collect-data.sh.in index b6f003db31..b844ca3136 100644 --- a/data/kata-collect-data.sh.in +++ b/data/kata-collect-data.sh.in @@ -346,7 +346,7 @@ show_container_mgr_details() subheading "crio" run_cmd_and_show_quoted_output "" "crio --version" run_cmd_and_show_quoted_output "" "systemctl show crio" - run_cmd_and_show_quoted_output "" "cat /etc/crio/crio.conf" + run_cmd_and_show_quoted_output "" "crio config" fi