From 6fbf4fd7654104c13aab90e5b2e99d211be376b5 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 15 Jan 2015 15:46:48 +0000 Subject: [PATCH] Fixed issue with CentOS not supporting free -h --- functions/fn_distrodetails | 39 ++++++++++++++++++++++---------------- 1 file changed, 23 insertions(+), 16 deletions(-) diff --git a/functions/fn_distrodetails b/functions/fn_distrodetails index 486bc5e7e..045475ae0 100644 --- a/functions/fn_distrodetails +++ b/functions/fn_distrodetails @@ -7,8 +7,8 @@ # Description: Variables providing useful info on the Operating System such as disk and performace info. # Used for fn_details, fn_debugserver and fn_emailnotification. -# Distro infomation -# Returns architecture, kernel and distro/os +## Distro infomation +# Returns architecture, kernel and distro/os. arch=$(uname -m) kernel=$(uname -r) if [ -f /etc/lsb-release ]; then @@ -33,18 +33,25 @@ else tmuxv=$(tmux -V) fi -# Performance +## Performance # Average server load load=$(uptime|awk -F 'load average: ' '{ print $2 }') # Memory -physmemtotal=$(free -h|grep "Mem:" | awk '{print $2}') -physmemused=$(free -h|grep "Mem:" | awk '{print $3}') -physmemfree=$(free -h|grep "Mem:" | awk '{print $4}') -swaptotal=$(free -h|grep "Swap:" | awk '{print $2}') -swapused=$(free -h|grep "Swap:" | awk '{print $3}') -swapfree=$(free -h|grep "Swap:" | awk '{print $4}') + +# Older versions of free do not support -h option. +if [ "$(free -h > /dev/null 2>&1; echo $?)" -ne "0" ]; then + option="-m" +else + option="-h" +fi + physmemtotal=$(free ${option} | grep "Mem:" | awk '{print $2}') + physmemused=$(free ${option} | grep "Mem:" | awk '{print $3}') + physmemfree=$(free ${option} | grep "Mem:" | awk '{print $4}') + swaptotal=$(free ${option} | grep "Swap:" | awk '{print $2}') + swapused=$(free ${option} | grep "Swap:" | awk '{print $3}') + swapfree=$(free ${option} | grep "Swap:" | awk '{print $4}') # Uptime uptime=$(