diff options
author | Chris Evich <cevich@redhat.com> | 2020-01-27 12:04:43 -0500 |
---|---|---|
committer | Chris Evich <cevich@redhat.com> | 2020-02-25 12:34:25 -0500 |
commit | 7e95e1e25c22193d7baf2a53dacd82e477589b4b (patch) | |
tree | c982847710e38f7a55fc8d3ed1a8bd184817787d | |
parent | 0ac0e6e61254651c173992d3a855fb188c0ba288 (diff) | |
download | podman-7e95e1e25c22193d7baf2a53dacd82e477589b4b.tar.gz podman-7e95e1e25c22193d7baf2a53dacd82e477589b4b.tar.bz2 podman-7e95e1e25c22193d7baf2a53dacd82e477589b4b.zip |
Cirrus: collect podman system info
Signed-off-by: Chris Evich <cevich@redhat.com>
-rw-r--r-- | .cirrus.yml | 1 | ||||
-rwxr-xr-x | contrib/cirrus/logcollector.sh | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index 608ba0a98..371f902c2 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -410,6 +410,7 @@ testing_task: audit_log_script: '$SCRIPT_BASE/logcollector.sh audit' journal_script: '$SCRIPT_BASE/logcollector.sh journal' varlink_script: '$SCRIPT_BASE/logcollector.sh varlink' + podman_system_info_script: '$SCRIPT_BASE/logcollector.sh podman' # This task executes tests under unique environments/conditions diff --git a/contrib/cirrus/logcollector.sh b/contrib/cirrus/logcollector.sh index 17f5eb099..1769e9362 100755 --- a/contrib/cirrus/logcollector.sh +++ b/contrib/cirrus/logcollector.sh @@ -32,6 +32,7 @@ case $1 in df) showrun df -lhTx tmpfs ;; ginkgo) showrun cat $CIRRUS_WORKING_DIR/test/e2e/ginkgo-node-*.log ;; journal) showrun journalctl -b ;; + podman) showrun podman system info ;; varlink) if [[ "$TEST_REMOTE_CLIENT" == "true" ]] then |