Browse Source

Added passwords

pull/509/head
Daniel Gibbs 10 years ago
parent
commit
77836f18ad
  1. 20
      functions/fn_details_config

20
functions/fn_details_config

@ -394,6 +394,26 @@ elif [ "${engine}" == "teeworlds" ]; then
servername="unnamed server"
fi
# password
if [ -f "${servercfgfullpath}" ]; then
rconpassword=$(grep "password " "${servercfgfullpath}" | sed 's/password //g' | tr -d '=\"; ')
if [ ! -n "${rconpassword}" ]; then
rconpassword="NOT SET"
fi
else
servername="\e[0;31mUNAVAILABLE\e[0m"
fi
# rcon password
if [ -f "${servercfgfullpath}" ]; then
rconpassword=$(grep "sv_rcon_password" "${servercfgfullpath}" | sed 's/sv_rcon_password //g' | tr -d '=\"; ')
if [ ! -n "${rconpassword}" ]; then
rconpassword="NOT SET"
fi
else
servername="\e[0;31mUNAVAILABLE\e[0m"
fi
# port
if [ -f "${servercfgfullpath}" ]; then
port=$(grep "sv_port" "${servercfgfullpath}" | tr -cd "[:digit:]")

Loading…
Cancel
Save