From b9725724b02bb1a5cd596da42b66d8ee4f225a93 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 12 Feb 2015 22:21:50 +0000 Subject: [PATCH] lsb_release command now detected changed so lsb_release command is detected rather than the /etc/lsb-release file --- functions/fn_details_distro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions/fn_details_distro b/functions/fn_details_distro index f48d49e67..a41eaf3e0 100644 --- a/functions/fn_details_distro +++ b/functions/fn_details_distro @@ -2,7 +2,7 @@ # LGSM fn_details_distro function # Author: Daniel Gibbs # Website: http://danielgibbs.co.uk -# Version: 260115 +# Version: 120215 # Description: Variables providing useful info on the Operating System such as disk and performace info. # Used for fn_details, fn_debug and fn_email. @@ -11,7 +11,7 @@ # Returns architecture, kernel and distro/os. arch=$(uname -m) kernel=$(uname -r) -if [ -f /etc/lsb-release ]; then +if [ -z $(command -v lsb_release) ]; then os=$(lsb_release -s -d) elif [ -f /etc/debian_version ]; then os="Debian $(cat /etc/debian_version)"