Browse Source

Migrated updated functions

pull/254/merge
Daniel Gibbs 11 years ago
parent
commit
ddd77c8ea7
  1. 124
      CounterStrikeSource/cssserver

124
CounterStrikeSource/cssserver

@ -3,7 +3,7 @@
# Server Management Script # Server Management Script
# Author: Daniel Gibbs # Author: Daniel Gibbs
# Website: http://danielgibbs.co.uk # Website: http://danielgibbs.co.uk
# Version: 061014 # Version: 121114
#### Variables #### #### Variables ####
@ -200,46 +200,11 @@ fi
} }
fn_debugserver(){ fn_debugserver(){
fn_rootcheck if [ ! -f functions/fn_debugserver ]; then
fn_syscheck functionfile="fn_debugserver"
fn_autoip fn_fninstall
fn_distro fi
fn_uptime source functions/fn_debugserver
fn_load
fn_parms
echo ""
echo "${gamename} Debug"
echo "============================"
echo ""
echo -e "Distro: ${os}"
echo -e "Arch: ${arch}"
echo -e "Kernel: ${kernel}"
echo -e "Hostname: $HOSTNAME"
echo ""
echo "Start parameters:"
echo ${parms}
echo ""
echo -e "Use for identifying server issues only!"
echo -e "Press CTRL+c to drop out of debug mode"
echo -e "\e[0;31mWARNING!\e[0;39m If ${servicename} is already running it will be stopped"
echo ""
while true; do
read -p "Continue? [y/N]" yn
case $yn in
[Yy]* ) break;;
[Nn]* ) echo Exiting; return 1;;
* ) echo "Please answer yes or no.";;
esac
done
fn_stopserver
fn_printdots "Starting debug mode ${servicename}: ${servername}"
sleep 1
fn_printok "Starting debug mode ${servicename}: ${servername}"
sleep 1
fn_scriptlog "Started debug mode ${servername}"
echo -en "\n"
cd "${executabledir}"
${executable} ${parms} -debug
} }
fn_console(){ fn_console(){
@ -644,44 +609,41 @@ echo -en "\n"
} }
fn_details(){ fn_details(){
fn_autoip if [ ! -f functions/fn_details ]; then
servername=$(grep -s hostname "${servercfgfullpath}"|sed 's/hostname //g'|sed 's/"//g') functionfile="fn_details"
rcon=$(grep -s rcon_password "${servercfgfullpath}"|sed 's/rcon_password //g'|sed 's/"//g') fn_fninstall
pid=$(tmux list-sessions 2>&1|awk '{print $1}'|grep -E "^${servicename}:"|wc -l)
echo ""
echo "${gamename} Server Details"
echo "============================"
echo "Server name: ${servername}"
echo "Server IP: ${ip}:${port}"
echo "RCON password: ${rcon}"
echo "Config file: ${servercfgfullpath}"
echo ""
echo "${servername} Ports"
echo "============================"
echo "Ports the server is currently using."
echo ""
echo "DIRECTION DESCRIPTION PORT"
echo "INBOUND Game/RCON port ${port}"
if [ ! -z ${sourcetvport} ]; then
echo "INBOUND SourceTV port ${sourcetvport}"
fi fi
echo "OUTBOUND Client port ${clientport}" source functions/fn_details
echo "" }
echo "You can change ports by editing the"
echo "start parameters in ${selfname}." fn_fninstall(){
echo "" cd ${rootdir}
if [ "${pid}" == "0" ]; then if [ ! -d "functions" ]; then
echo -e "Status:\e[0;31m OFFLINE\e[0;39m" mkdir functions
else
echo -e "Status:\e[0;32m ONLINE\e[0;39m"
fi fi
echo "" echo ""
echo "Downloading ${functionfile}"
echo "================================="
cd functions
wget -nv -N https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile}
chmod +x ${functionfile}
cd ${rootdir}
sleep 1
echo ""
} }
# #
## Installer ## Installer
# #
fn_glibcfix(){
if [ ! -f functions/fn_glibcfix ]; then
functionfile="fn_glibcfix"
fn_fninstall
fi
source functions/fn_glibcfix
}
fn_header(){ fn_header(){
clear clear
echo "=================================" echo "================================="
@ -735,14 +697,11 @@ echo ""
} }
fn_steamfix(){ fn_steamfix(){
echo "Applying steamclient.so fix" if [ ! -f functions/fn_steamfix ]; then
echo "=================================" functionfile="fn_steamfix"
sleep 1 fn_fninstall
mkdir -pv "${HOME}/.steam" fi
mkdir -pv "${HOME}/.steam/sdk32" source functions/fn_steamfix
cp -v "${rootdir}/steamcmd/linux32/steamclient.so" "${HOME}/.steam/sdk32/steamclient.so"
sleep 1
echo ""
} }
fn_loginstall(){ fn_loginstall(){
@ -821,6 +780,7 @@ fn_steaminstall
fn_steamfix fn_steamfix
fn_loginstall fn_loginstall
fn_getquery fn_getquery
fn_glibcfix
echo "Configuring ${gamename} Server" echo "Configuring ${gamename} Server"
echo "=================================" echo "================================="
sleep 1 sleep 1
@ -834,16 +794,16 @@ echo "================================="
echo "Creating ${servicename}.cfg config file." echo "Creating ${servicename}.cfg config file."
touch "${servercfgfullpath}" touch "${servercfgfullpath}"
{ {
echo -e "// server name" echo -e "// Server Name"
echo -e "hostname \"${servername}\"" echo -e "hostname \"${servername}\""
echo -e "" echo -e ""
echo -e "// rcon passsword" echo -e "// RCON Password"
echo -e "rcon_password \"${rconpass}\"" echo -e "rcon_password \"${rconpass}\""
echo -e "" echo -e ""
echo -e "// Server password" echo -e "// Server Password"
echo -e "sv_password \"\"" echo -e "sv_password \"\""
echo -e "" echo -e ""
echo -e "// server logging" echo -e "// Server Logging"
echo -e "log on" echo -e "log on"
echo -e "sv_logbans 1" echo -e "sv_logbans 1"
echo -e "sv_logecho 1" echo -e "sv_logecho 1"

Loading…
Cancel
Save