diff --git a/functions/fn_distro b/functions/fn_distro index 51a47378c..0e557e2dd 100644 --- a/functions/fn_distro +++ b/functions/fn_distro @@ -2,7 +2,8 @@ # LGSM fn_distro function # Author: Daniel Gibbs # Website: http://danielgibbs.co.uk -# Version: 011214 +# Version: 141214 +# Depricated: fn_distrodetails has replaced this function. arch=$(uname -m) kernel=$(uname -r) diff --git a/functions/fn_distrodetails b/functions/fn_distrodetails new file mode 100644 index 000000000..486bc5e7e --- /dev/null +++ b/functions/fn_distrodetails @@ -0,0 +1,81 @@ +#!/bin/bash +# LGSM fn_distrodetails function +# Author: Daniel Gibbs +# Website: http://danielgibbs.co.uk +# Version: 141214 + +# 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 +arch=$(uname -m) +kernel=$(uname -r) +if [ -f /etc/lsb-release ]; then + os=$(lsb_release -s -d) +elif [ -f /etc/debian_version ]; then + os="Debian $(cat /etc/debian_version)" +elif [ -f /etc/redhat-release ]; then + os=$(cat /etc/redhat-release) +else + os="$(uname -s) $(uname -r)" +fi + +# Glibc version number +# e.g: 1.17 +glibcv=$(ldd --version |grep ldd|awk '{print $NF}') + +# tmux version +# e.g: tmux 1.6 +if [ "$(tmux -V|sed "s/tmux //"|sed -n '1 p'|tr -cd [:digit:]|tail -c 3)" -lt "16" ]; then + tmuxv="$(tmux -V) (>= 1.6 required for console log)" +else + tmuxv=$(tmux -V) +fi + +# 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}') + +# Uptime +uptime=$(