From ec76b75cec36fb209b5ac7e0d8ad67ffc37fc106 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 8 Dec 2014 23:11:27 +0000 Subject: [PATCH] fixed: ip command not found ip: command not found if the command is not available in /bin/ip then use /sbin/ip --- functions/fn_autoip | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/functions/fn_autoip b/functions/fn_autoip index b626276ce..4f60ca8dc 100644 --- a/functions/fn_autoip +++ b/functions/fn_autoip @@ -2,13 +2,19 @@ # LGSM fn_autoip function # Author: Daniel Gibbs # Website: http://danielgibbs.co.uk -# Version: 011214 +# Version: 081214 # Identifies the server interface IP # If multiple interfaces this will need to be set manually -getip=$(ip -o -4 addr|awk '{print $4 }'|grep -oe '\([0-9]\{1,3\}\.\?\)\{4\}'|grep -v 127.0.0) -getipwc=$(ip -o -4 addr|awk '{print $4 }'|grep -oe '\([0-9]\{1,3\}\.\?\)\{4\}'|grep -vc 127.0.0) +if [ ! -f /bin/ip ]; then + ipcommand="/sbin/ip" +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) + if [ "${ip}" == "0.0.0.0" ]||[ "${ip}" == "" ]; then if [ "${getipwc}" -ge "2" ]; then fn_printwarn "Multiple active network interfaces.\n\n"