Skip to content
Snippets Groups Projects
Commit f9fee1f1 authored by Bartosz Bezak's avatar Bartosz Bezak
Browse files

CI: get repo directories from nodes for troubleshooting

Change-Id: I0f7a3dcb021f726693725f070d9a2ff80d84fe0e
parent 06858145
No related branches found
No related tags found
No related merge requests found
......@@ -53,6 +53,14 @@ copy_logs() {
cp -r /etc/NetworkManager/system-connections/ ${LOG_DIR}/system_logs/
fi
if [[ -d /etc/yum.repos.d/ ]]; then
cp -r /etc/yum.repos.d/ ${LOG_DIR}/system_logs/
fi
if [[ -d /etc/apt/sources.list.d/ ]]; then
cp -r /etc/apt/sources.list.d/ ${LOG_DIR}/system_logs/
fi
df -h > ${LOG_DIR}/system_logs/df.txt
# Gather disk usage statistics for files and directories larger than 1MB
du -d 5 -hx / | sort -hr | grep '^[0-9\.]*[MGT]' > ${LOG_DIR}/system_logs/du.txt
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment