Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions scripts/ci/make_mnt_writeable.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ function make_mnt_writeable {
echo "Investigating node disks"
lsblk
sudo blkid
echo "Check that we have expected /mnt to be a separate mount"
if ! lsblk | grep -q /mnt; then
echo "/mnt is missing as a separate mount, runner misconfigured!"
exit 42
fi
echo "Checking free space!"
df -H
echo "Cleaning /mnt just in case it is not empty"
Expand Down
Loading