c7ac0f0de0
If stestr failed, then no node info was logged. Logging node info is now handled in pre and post stages of Zuul. Additionally Zuul v3 migration recommendations were applied and some unused code removed improving general readability. Change-Id: Iae9d37cb76997ba8389e21c7e2a3bf5905abe029 Signed-off-by: Radosław Piliszek <radoslaw.piliszek@gmail.com>
27 lines
423 B
Bash
Executable File
27 lines
423 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o xtrace
|
|
|
|
function dump_node_info {
|
|
# NOTE(SamYaple): function for debugging gate
|
|
set +o errexit
|
|
local OLD_PATH="${PATH}"
|
|
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
|
|
sudo parted -l
|
|
|
|
sudo mount
|
|
|
|
df -h
|
|
|
|
uname -a
|
|
|
|
cat /etc/*release*
|
|
|
|
cat /proc/meminfo
|
|
|
|
PATH="${OLD_PATH}"
|
|
set -o errexit
|
|
}
|
|
|
|
(dump_node_info 2>&1) > node_info_$(date +%s)
|