Browse Source

add Squad sections to command_details

adds map rotation mode & port information
pull/1449/head
Scarsz 8 years ago
parent
commit
60ed162d95
  1. 24
      lgsm/functions/command_details.sh

24
lgsm/functions/command_details.sh

@ -173,6 +173,11 @@ fn_details_gameserver(){
echo -e "${blue}ASE:\t${default}${ase}"
fi
# Random map rotation mode (Squad)
if [ -n "${randommapmode}"]; then
echo -e "${blue}Map rotation:\t${default}${randommapmode}"
fi
# Online status
if [ "${status}" == "0" ]; then
echo -e "${blue}Status:\t${red}OFFLINE${default}"
@ -190,7 +195,7 @@ fn_details_script(){
# Service name: ql-server
# qlserver version: 150316
# User: lgsm
# Email alert: off
# Email alert: off
# Update on start: off
# Location: /home/lgsm/qlserver
# Config file: /home/lgsm/qlserver/serverfiles/baseq3/ql-server.cfg
@ -656,6 +661,21 @@ fn_details_spark(){
} | column -s $'\t' -t
}
fn_details_squad(){
echo -e "netstat -atunp | grep SquadServer"
echo -e ""
{
echo -e "DESCRIPTION\tDIRECTION\tPORT\tPROTOCOL"
echo -e "> Game\tINBOUND\t${port}\tudp"
# Don't do arithmetics if ever the port wasn't a numeric value
if [ "${port}" -eq "${port}" ]; then
echo -e "> RAW\tINBOUND\t$((port+1))\tudp"
fi
echo -e "> Query\tINBOUND\t${queryport}\tudp"
echo -e "> RCON\tINBOUND\t${rconport}\ttcp"
} | column -s $'\t' -t
}
fn_details_starbound(){
echo -e "netstat -atunp | grep starbound"
echo -e ""
@ -861,6 +881,8 @@ fn_display_details() {
fn_details_quake3
elif [ "${gamename}" == "Quake Live" ]; then
fn_details_quakelive
elif [ "${gamename}" == "Squad"]; then
fn_details_squad
elif [ "${gamename}" == "TeamSpeak 3" ]; then
fn_details_teamspeak3
elif [ "${gamename}" == "Tower Unite" ]; then

Loading…
Cancel
Save