Browse Source

added missing quotes

pull/575/head
Daniel Gibbs 9 years ago
parent
commit
dfbcee27eb
  1. 4
      functions/fn_check_ip

4
functions/fn_check_ip

@ -2,12 +2,12 @@
# LGSM fn_check_ip function # LGSM fn_check_ip function
# Author: Daniel Gibbs # Author: Daniel Gibbs
# Website: http://gameservermanagers.com # Website: http://gameservermanagers.com
lgsm_version="061115" lgsm_version="201215"
# Description: Automatically identifies the server interface IP. # 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". # If multiple interfaces are detected the user will need to manualy set using ip="0.0.0.0".
if [ ! -f /bin/ip ]; then if [ ! -f "/bin/ip" ]; then
ipcommand="/sbin/ip" ipcommand="/sbin/ip"
else else
ipcommand="ip" ipcommand="ip"

Loading…
Cancel
Save