From f63701af37286b34ba9192affaffb8509b0c81ae Mon Sep 17 00:00:00 2001 From: Salvador Fuentes Date: Wed, 6 Dec 2017 08:47:31 -0600 Subject: [PATCH] ci: Update how journalctl gets the cc-proxy log Now that the cc-proxy will not be a service, we need to use option -t in journalctl to get the logs from the proxy. Relates to: https://github.com/clearcontainers/runtime/pull/835 https://github.com/clearcontainers/proxy/pull/177 Fixes: #775 Signed-off-by: Salvador Fuentes --- .ci/teardown.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/teardown.sh b/.ci/teardown.sh index 28b800329..48e4ae81e 100755 --- a/.ci/teardown.sh +++ b/.ci/teardown.sh @@ -40,7 +40,7 @@ crio_log_prefix="crio_" if [ ${log_copy_dest} ]; then # Create the log files journalctl --no-pager -t cc-runtime > "${runtime_log_path}" - journalctl --no-pager -u cc-proxy > "${proxy_log_path}" + journalctl --no-pager -t cc-proxy > "${proxy_log_path}" journalctl --no-pager -t cc-shim > "${shim_log_path}" journalctl --no-pager -u crio > "${crio_log_path}"