Files
AvianVisitors/scripts/disk_check.sh
T
2021-12-01 10:29:06 -05:00

9 lines
183 B
Bash
Executable File

#!/usr/bin/env bash
set -x
used="$(df -h / | tail -n1 | awk '{print $5}')"
if [ "${used//%}" -gt 95 ]; then
echo "Stopping Core Services"
/usr/local/bin/stop_core_services.sh
fi