gameservergame-servergame-servershacktoberfestdedicated-game-serversgamelinuxgsmserverbashgaminglinuxmultiplayer-game-servershell
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.1 KiB
34 lines
1.1 KiB
#!/bin/bash
|
|
# LGSM check_status.sh function
|
|
# Author: Daniel Gibbs
|
|
# Contributor: UltimateByte
|
|
# Website: https://gameservermanagers.com
|
|
# Description: Checks the proccess status of the server. Either online or offline.
|
|
|
|
local commandname="CHECK"
|
|
local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
|
|
|
|
if [ "${gamename}" == "Teamspeak 3" ]; then
|
|
# 1: Server is running
|
|
# 0: Server seems to have died
|
|
# 0: No server running (ts3server.pid is missing)
|
|
status=$(${executabledir}/ts3server_startscript.sh status servercfgfullpathfile=${servercfgfullpath})
|
|
if [ "${status}" == "Server is running" ]; then
|
|
status=1
|
|
else
|
|
ts3error="${status}"
|
|
status=0
|
|
fi
|
|
|
|
elif [ "${gamename}" == "Mumble" ]; then
|
|
# 1: Server is listening
|
|
# 0: Server is not listening, considered closed
|
|
mumblepid=$(netstat -nap 2>/dev/null | grep udp | grep 64738 | grep murmur | awk '{ print $6 }' | awk -F'/' '{ print $1 }')
|
|
if [ -z "${mumblepid}" ]; then
|
|
status=0
|
|
else
|
|
status=1
|
|
fi
|
|
else
|
|
status=$(tmux list-sessions 2>&1 | awk '{print $1}' | grep -Ec "^${servicename}:")
|
|
fi
|
|
|