summaryrefslogtreecommitdiff
path: root/contrib/cirrus/logcollector.sh
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-08-10 16:27:04 -0400
committerGitHub <noreply@github.com>2020-08-10 16:27:04 -0400
commitf24538b85e9c81be3cb1f4990bd3613986621746 (patch)
treea7474cd334dffb26fee0da049c0ad101ab48be95 /contrib/cirrus/logcollector.sh
parentb20f44f073c1d501de499ec778a528f39edc1f5c (diff)
parent49fa3e73997815874a6314ebb7177f878d6839b1 (diff)
downloadpodman-f24538b85e9c81be3cb1f4990bd3613986621746.tar.gz
podman-f24538b85e9c81be3cb1f4990bd3613986621746.tar.bz2
podman-f24538b85e9c81be3cb1f4990bd3613986621746.zip
Merge pull request #7244 from rhatdan/test
Remove TEST_ from TEST_REMOTE_*
Diffstat (limited to 'contrib/cirrus/logcollector.sh')
-rwxr-xr-xcontrib/cirrus/logcollector.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/cirrus/logcollector.sh b/contrib/cirrus/logcollector.sh
index 0b179591a..859da2966 100755
--- a/contrib/cirrus/logcollector.sh
+++ b/contrib/cirrus/logcollector.sh
@@ -4,7 +4,7 @@ set -e
source $(dirname $0)/lib.sh
-req_env_var CIRRUS_WORKING_DIR OS_RELEASE_ID TEST_REMOTE_CLIENT
+req_env_var CIRRUS_WORKING_DIR OS_RELEASE_ID RCLI
# Assume there are other log collection commands to follow - Don't
# let one break another that may be useful, but also keep any
@@ -34,12 +34,12 @@ case $1 in
journal) showrun journalctl -b ;;
podman) showrun ./bin/podman system info ;;
varlink)
- if [[ "$TEST_REMOTE_CLIENT" == "true" ]]
+ if [[ "$RCLI" == "true" ]]
then
echo "(Trailing 100 lines of $VARLINK_LOG)"
showrun tail -100 $VARLINK_LOG
else
- die 0 "\$TEST_REMOTE_CLIENT is not 'true': $TEST_REMOTE_CLIENT"
+ die 0 "\$RCLI is not 'true': $RCLI"
fi
;;
packages)