Browse Source

Updated dates

pull/292/head
Daniel Gibbs 10 years ago
parent
commit
c7b20905eb
  1. 6
      functions/fn_check_ip
  2. 2
      functions/fn_check_logs
  3. 2
      functions/fn_details_distro
  4. 2
      functions/fn_install_logs
  5. 2
      functions/fn_messages

6
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

2
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"

2
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.

2
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"

2
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.

Loading…
Cancel
Save