Files
runner-images/images/linux/scripts/installers/validate-disk-space.sh
Mikhail Timofeev 0e7d6a75c6 [Ubuntu] Add /tmp cleanup (#878)
* add tmp cleanup

* low min to 17800
2020-05-14 09:08:27 +03:00

14 lines
543 B
Bash

#!/bin/bash
################################################################################
## File: validate-disk-space.sh
## Desc: Validate free disk space
################################################################################
availableSpaceMB=$(df / -hm | sed 1d | awk '{ print $4}')
minimumFreeSpaceMB=17800
echo "Available disk space: $availableSpaceMB MB"
if [ $availableSpaceMB -le $minimumFreeSpaceMB ]; then
echo "Not enough disk space on the image (minimum available space: $minimumFreeSpaceMB MB)"
exit 1
fi