ddb3965d30
Somewhere along the way we lost the ability to read the conductor, api, and baremetal log files that we retained for storage as CI test results. This revision resets the permissions so any user can read the file since we can't make assumptions about the webserver user. Change-Id: Idc36f736f9e54a69348045988483559b88e51980
39 lines
1.6 KiB
Bash
Executable File
39 lines
1.6 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Note(TheJulia): We should proceed with attempting to collect information
|
|
# even if a command fails, and as such set -e should not be present.
|
|
set -ux
|
|
set -o pipefail
|
|
|
|
# Note(TheJulia): If there is a workspace variable, we want to utilize that as
|
|
# the preference of where to put logs
|
|
SCRIPT_HOME="$(cd "$(dirname "$0")" && pwd)"
|
|
LOG_LOCATION="${WORKSPACE:-${SCRIPT_HOME}/..}/logs"
|
|
|
|
echo "Making logs directory and collecting logs."
|
|
[ -d ${LOG_LOCATION} ] || mkdir -p ${LOG_LOCATION}
|
|
sudo cp /var/log/libvirt/baremetal_logs/testvm[[:digit:]]_console.log ${LOG_LOCATION}
|
|
sudo chown $USER ${LOG_LOCATION}/testvm[[:digit:]]_console.log
|
|
sudo chmod o+r ${LOG_LOCATION}/testvm[[:digit:]]_console.log
|
|
dmesg &> ${LOG_LOCATION}/dmesg.log
|
|
# NOTE(TheJulia): Netstat exits with error code 5 when --version is used.
|
|
sudo netstat -apn &> ${LOG_LOCATION}/netstat.log
|
|
if $(iptables --version &>/dev/null); then
|
|
sudo iptables -L -n -v &> ${LOG_LOCATION}/iptables.log
|
|
fi
|
|
if $(ip link &>/dev/null); then
|
|
ip -s link &> ${LOG_LOCATION}/interface_counters.log
|
|
fi
|
|
if $(journalctl --version &>/dev/null); then
|
|
sudo journalctl -u ironic-api &> ${LOG_LOCATION}/ironic-api.log
|
|
sudo journalctl -u ironic-conductor &> ${LOG_LOCATION}/ironic-conductor.log
|
|
else
|
|
sudo cp /var/log/upstart/ironic-api.log ${LOG_LOCATION}/
|
|
sudo cp /var/log/upstart/ironic-conductor.log ${LOG_LOCATION}/
|
|
fi
|
|
sudo chown $USER ${LOG_LOCATION}/ironic-api.log
|
|
sudo chown $USER ${LOG_LOCATION}/ironic-conductor.log
|
|
# In CI scenarios, we want other users to be able to read the logs.
|
|
sudo chmod o+r ${LOG_LOCATION}/ironic-api.log
|
|
sudo chmod o+r ${LOG_LOCATION}/ironic-conductor.log
|