summaryrefslogtreecommitdiff
path: root/contrib/cirrus/logcollector.sh
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2020-08-06 10:09:33 -0400
committerDaniel J Walsh <dwalsh@redhat.com>2020-08-10 12:47:43 -0400
commit49fa3e73997815874a6314ebb7177f878d6839b1 (patch)
tree7cb778c747821435ebe778c1507f076f7868178a /contrib/cirrus/logcollector.sh
parent162625f2e74c8ad9bf9a7337baaa2621bbf0a26e (diff)
downloadpodman-49fa3e73997815874a6314ebb7177f878d6839b1.tar.gz
podman-49fa3e73997815874a6314ebb7177f878d6839b1.tar.bz2
podman-49fa3e73997815874a6314ebb7177f878d6839b1.zip
Remove TEST_REMOTE_CLIENT from RCLI
We know these are TEST_, hoping this makes the display in cirrus easier for users to see true|false, since this is the valuable information is. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
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)