diff --git a/functions/fn_check_ip b/functions/fn_check_ip index f0ec52970..43480eaf8 100644 --- a/functions/fn_check_ip +++ b/functions/fn_check_ip @@ -2,7 +2,7 @@ # LGSM fn_check_ip function # Author: Daniel Gibbs # Website: http://danielgibbs.co.uk -# Version: 210115 +# Version: 260115 # Description: Automatically identifies the server interface IP. # If multiple interfaces are detected the user will need to manualy set using ip="0.0.0.0". @@ -12,8 +12,8 @@ if [ ! -f /bin/ip ]; then else ipcommand="ip" fi -getip=$(${ipcommand} -o -4 addr|awk '{print $4 }'|grep -oe '\([0-9]\{1,3\}\.\?\)\{4\}'|grep -v 127.0.0) -getipwc=$(${ipcommand} -o -4 addr|awk '{print $4 }'|grep -oe '\([0-9]\{1,3\}\.\?\)\{4\}'|grep -vc 127.0.0) +getip=$(${ipcommand} -o -4 addr|awk '{print $4}'|grep -oe '\([0-9]\{1,3\}\.\?\)\{4\}'|grep -v 127.0.0) +getipwc=$(${ipcommand} -o -4 addr|awk '{print $4}'|grep -oe '\([0-9]\{1,3\}\.\?\)\{4\}'|grep -vc 127.0.0) if [ "${ip}" == "0.0.0.0" ]||[ "${ip}" == "" ]; then if [ "${getipwc}" -ge "2" ]; then diff --git a/functions/fn_check_logs b/functions/fn_check_logs index 07d08bc5f..1a07f11a3 100644 --- a/functions/fn_check_logs +++ b/functions/fn_check_logs @@ -2,7 +2,7 @@ # LGSM fn_install_logs function # Author: Daniel Gibbs # Website: http://danielgibbs.co.uk -# Version: 210115 +# Version: 260115 echo "" echo "Creating log directorys" diff --git a/functions/fn_details_distro b/functions/fn_details_distro index 613aec491..cd57bedb0 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: 210115 +# Version: 260115 # Description: Variables providing useful info on the Operating System such as disk and performace info. # Used for fn_details, fn_debug and fn_email. diff --git a/functions/fn_install_logs b/functions/fn_install_logs index 07d08bc5f..1a07f11a3 100644 --- a/functions/fn_install_logs +++ b/functions/fn_install_logs @@ -2,7 +2,7 @@ # LGSM fn_install_logs function # Author: Daniel Gibbs # Website: http://danielgibbs.co.uk -# Version: 210115 +# Version: 260115 echo "" echo "Creating log directorys" diff --git a/functions/fn_messages b/functions/fn_messages index 6d35314bd..89d270c15 100644 --- a/functions/fn_messages +++ b/functions/fn_messages @@ -2,7 +2,7 @@ # LGSM fn_messages function # Author: Daniel Gibbs # Website: http://danielgibbs.co.uk -# Version: 210115 +# Version: 260115 # Description: Defines on-screen messages such as [ OK ] and how script logs look.