Megatest

install.sh at [1f5fe87e8e]
Login

File mkdeploy/tests/eggs/install.sh artifact dc233ea2bc part of check-in 1f5fe87e8e


#!/bin/bash -e
freespace=`df -k /$DIRECTORY | grep $DIRECTORY | awk '{print $4}'`
if [[ $freespace -lt $REQUIRED ]];then
  echo "ERROR: insufficient space on /$DIRECTORY"
  exit 1
else
  echo "There is adequate space on /$DIRECTORY"
fi