Browse Source

fix(mcserver):correct minecraft port info (#2284)

pull/2293/head
Daniel Gibbs 6 years ago
committed by GitHub
parent
commit
64d21a1b88
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      lgsm/functions/info_config.sh
  2. 6
      lgsm/functions/info_messages.sh

8
lgsm/functions/info_config.sh

@ -320,6 +320,7 @@ fn_info_config_inss(){
rconport=${rconport:-"0"}
fi
}
fn_info_config_minecraft(){
if [ ! -f "${servercfgfullpath}" ]; then
servername="${unavailable}"
@ -329,7 +330,6 @@ fn_info_config_minecraft(){
port="${zero}"
queryport="${zero}"
queryenabled="${unavailable}"
rconport="${zero}"
gamemode="${unavailable}"
gameworld="${unavailable}"
else
@ -338,9 +338,8 @@ fn_info_config_minecraft(){
rconport=$(grep "rcon.port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]')
maxplayers=$(grep "max-players" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]')
port=$(grep "server-port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]')
queryport=$(grep "query.port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]')
queryport="${port}"
queryenabled=$(grep "enable-query" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/enable-query//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
rconport=$(grep "rcon.port" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]')
gamemode=$(grep "gamemode" "${servercfgfullpath}" | grep -v "#" | tr -cd '[:digit:]')
gameworld=$(grep "level-name" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^#/d' -e 's/level-name//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
@ -354,9 +353,10 @@ fn_info_config_minecraft(){
rconport=${rconport:-"NOT SET"}
maxplayers=${maxplayers:-"NOT SET"}
port=${port:-"NOT SET"}
queryport="${queryport:-"NOT SET"}"
queryenabled="${queryenabled:-"NOT SET"}"
gamemode=${gamemode:-"NOT SET"}
gameworld=${gameworld:-"NOT SET"}
fi
}

6
lgsm/functions/info_messages.sh

@ -78,7 +78,7 @@ fn_info_message_performance(){
echo -e "${blue}CPU Model:\t${default}${cpumodel}"
echo -e "${blue}CPU Cores:\t${default}${cpucores}"
echo -e "${blue}CPU Frequency:\t${default}${cpufreuency}"
} | column -s $'\t' -t
} | column -s $'\t' -t
echo -e ""
{
echo -e "${blue}Mem:\t${blue}total\tused\tfree\tcached\tavailable${default}"
@ -737,8 +737,8 @@ fn_info_message_minecraft(){
{
echo -e "DESCRIPTION\tDIRECTION\tPORT\tPROTOCOL"
echo -e "> Game\tINBOUND\t${port}\ttcp"
echo -e "> Game\tINBOUND\t${queryport}\tudp"
echo -e "> Game\tINBOUND\t${rconport}\ttcp"
echo -e "> Query\tINBOUND\t${queryport}\tudp"
echo -e "> Rcon\tINBOUND\t${rconport}\ttcp"
} | column -s $'\t' -t
}

Loading…
Cancel
Save