Browse Source

Merge branch 'feature/tmux-180416' into develop

pull/1915/head
Daniel Gibbs 7 years ago
parent
commit
c99e53810a
  1. 2
      lgsm/functions/check_status.sh
  2. 55
      lgsm/functions/command_start.sh
  3. 42
      lgsm/functions/command_stop.sh

2
lgsm/functions/check_status.sh

@ -32,5 +32,5 @@ elif [ "${gamename}" == "Mumble" ]; then
status=1 status=1
fi fi
else else
status=$(tmux list-sessions 2>&1 | awk '{print $1}' | grep -Ec "^${servicename}:") status=$(tmux list-sessions -F "#{session_name}" 2>/dev/null | grep -Ecx "^${servicename}")
fi fi

55
lgsm/functions/command_start.sh

@ -25,14 +25,6 @@ fn_start_teamspeak3(){
touch "${servercfgfullpath}" touch "${servercfgfullpath}"
fi fi
sleep 0.5 sleep 0.5
check_status.sh
if [ "${status}" != "0" ]; then
fn_print_info_nl "${servername} is already running"
fn_script_log_error "${servername} is already running"
if [ -z "${exitbypass}" ]; then
core_exit.sh
fi
fi
if [ -f "${lgsmlog}" ]; then if [ -f "${lgsmlog}" ]; then
mv "${lgsmlog}" "${lgsmlogdate}" mv "${lgsmlog}" "${lgsmlogdate}"
fi fi
@ -81,26 +73,15 @@ fn_start_tmux(){
fi fi
# Log rotation # Log rotation
check_status.sh fn_script_log_info "Rotating log files"
if [ "${status}" == "0" ]; then if [ "${engine}" == "unreal2" ]&&[ -f "${gamelog}" ]; then
fn_script_log_info "Rotating log files" mv "${gamelog}" "${gamelogdate}"
if [ "${engine}" == "unreal2" ]; then fi
if [ -f "${gamelog}" ]; then if [ -f "${lgsmlog}" ]; then
mv "${gamelog}" "${gamelogdate}"
fi
fi
mv "${lgsmlog}" "${lgsmlogdate}" mv "${lgsmlog}" "${lgsmlogdate}"
mv "${consolelog}" "${consolelogdate}"
fi fi
if [ -f "${consolelog}" ]; then
# If server is already running exit mv "${consolelog}" "${consolelogdate}"
check_status.sh
if [ "${status}" != "0" ]; then
fn_print_info_nl "${servername} is already running"
fn_script_log_error "${servername} is already running"
if [ -z "${exitbypass}" ]; then
core_exit.sh
fi
fi fi
# Create lockfile # Create lockfile
@ -118,7 +99,7 @@ fn_start_tmux(){
fn_script_log "Tmux version: master (user compiled)" fn_script_log "Tmux version: master (user compiled)"
echo "Tmux version: master (user compiled)" >> "${consolelog}" echo "Tmux version: master (user compiled)" >> "${consolelog}"
if [ "${consolelogging}" == "on" ]||[ -z "${consolelogging}" ]; then if [ "${consolelogging}" == "on" ]||[ -z "${consolelogging}" ]; then
tmux pipe-pane -o -t="${servicename}" "exec cat >> '${consolelog}'" tmux pipe-pane -o -t "${servicename}" "exec cat >> '${consolelog}'"
fi fi
elif [ -n "${tmuxversion}" ]; then elif [ -n "${tmuxversion}" ]; then
# Get the digit version of tmux # Get the digit version of tmux
@ -136,7 +117,7 @@ fn_start_tmux(){
Currently installed: $(tmux -V)" > "${consolelog}" Currently installed: $(tmux -V)" > "${consolelog}"
# Console logging enable or not set # Console logging enable or not set
elif [ "${consolelogging}" == "on" ]||[ -z "${consolelogging}" ]; then elif [ "${consolelogging}" == "on" ]||[ -z "${consolelogging}" ]; then
tmux pipe-pane -o -t="${servicename}" "exec cat >> '${consolelog}'" tmux pipe-pane -o -t "${servicename}" "exec cat >> '${consolelog}'"
fi fi
else else
echo "Unable to detect tmux version" >> "${consolelog}" echo "Unable to detect tmux version" >> "${consolelog}"
@ -209,17 +190,23 @@ sleep 0.5
fn_print_dots "${servername}" fn_print_dots "${servername}"
sleep 0.5 sleep 0.5
check.sh check.sh
# Is the server already started
if [ "${status}" != "0" ]; then # $status comes from check_status.sh, which is run by check.sh for this command
fn_print_info_nl "${servername} is already running"
fn_script_log_error "${servername} is already running"
if [ -z "${exitbypass}" ]; then
core_exit.sh
fi
fi
fix.sh fix.sh
info_config.sh info_config.sh
logs.sh logs.sh
# Will check for updates is updateonstart is yes # Will check for updates is updateonstart is yes
if [ "${status}" == "0" ]; then if [ "${updateonstart}" == "yes" ]||[ "${updateonstart}" == "1" ]||[ "${updateonstart}" == "on" ]; then
if [ "${updateonstart}" == "yes" ]||[ "${updateonstart}" == "1" ]||[ "${updateonstart}" == "on" ]; then exitbypass=1
exitbypass=1 unset updateonstart
unset updateonstart command_update.sh
command_update.sh
fi
fi fi
if [ "${gamename}" == "TeamSpeak 3" ]; then if [ "${gamename}" == "TeamSpeak 3" ]; then

42
lgsm/functions/command_stop.sh

@ -34,7 +34,6 @@ fn_stop_graceful_ctrlc(){
fn_script_log_error "Graceful: CTRL+c: FAIL" fn_script_log_error "Graceful: CTRL+c: FAIL"
fi fi
sleep 0.5 sleep 0.5
fn_stop_tmux
} }
# Attempts graceful shutdown by sending a specified command. # Attempts graceful shutdown by sending a specified command.
@ -64,7 +63,6 @@ fn_stop_graceful_cmd(){
fn_script_log_error "Graceful: sending \"${1}\": FAIL" fn_script_log_error "Graceful: sending \"${1}\": FAIL"
fi fi
sleep 0.5 sleep 0.5
fn_stop_tmux
} }
# Attempts graceful of goldsource using rcon 'quit' command. # Attempts graceful of goldsource using rcon 'quit' command.
@ -85,7 +83,6 @@ fn_stop_graceful_goldsource(){
fn_print_ok_eol_nl fn_print_ok_eol_nl
fn_script_log_pass "Graceful: sending \"quit\": OK: ${seconds} seconds" fn_script_log_pass "Graceful: sending \"quit\": OK: ${seconds} seconds"
sleep 0.5 sleep 0.5
fn_stop_tmux
} }
# Attempts graceful of 7 Days To Die using telnet. # Attempts graceful of 7 Days To Die using telnet.
@ -174,7 +171,6 @@ fn_stop_graceful_sdtd(){
fn_script_log_warn "Graceful: telnet: expect not installed: FAIL" fn_script_log_warn "Graceful: telnet: expect not installed: FAIL"
fi fi
sleep 0.5 sleep 0.5
fn_stop_tmux
} }
fn_stop_graceful_select(){ fn_stop_graceful_select(){
@ -195,8 +191,6 @@ fn_stop_graceful_select(){
fn_stop_graceful_ctrlc fn_stop_graceful_ctrlc
elif [ "${engine}" == "source" ]||[ "${engine}" == "quake" ]||[ "${engine}" == "idtech2" ]||[ "${engine}" == "idtech3" ]||[ "${engine}" == "idtech3_ql" ]||[ "${engine}" == "Just Cause 2" ]||[ "${engine}" == "projectzomboid" ]||[ "${shortname}" == "rw" ]; then elif [ "${engine}" == "source" ]||[ "${engine}" == "quake" ]||[ "${engine}" == "idtech2" ]||[ "${engine}" == "idtech3" ]||[ "${engine}" == "idtech3_ql" ]||[ "${engine}" == "Just Cause 2" ]||[ "${engine}" == "projectzomboid" ]||[ "${shortname}" == "rw" ]; then
fn_stop_graceful_cmd "quit" 30 fn_stop_graceful_cmd "quit" 30
else
fn_stop_tmux
fi fi
} }
@ -267,8 +261,6 @@ fn_stop_tmux(){
sleep 0.5 sleep 0.5
check_status.sh check_status.sh
if [ "${status}" == "0" ]; then if [ "${status}" == "0" ]; then
# Remove lockfile
rm -f "${rootdir}/${lockselfname}"
# ARK doesn't clean up immediately after tmux is killed. # ARK doesn't clean up immediately after tmux is killed.
# Make certain the ports are cleared before continuing. # Make certain the ports are cleared before continuing.
if [ "${gamename}" == "ARK: Survival Evolved" ]; then if [ "${gamename}" == "ARK: Survival Evolved" ]; then
@ -277,28 +269,26 @@ fn_stop_tmux(){
fn_print_ok_nl "${servername}" fn_print_ok_nl "${servername}"
fn_script_log_pass "Stopped ${servername}" fn_script_log_pass "Stopped ${servername}"
else else
fn_print_fail_nl "Unable to stop${servername}" fn_print_fail_nl "Unable to stop ${servername}"
fn_script_log_fatal "Unable to stop${servername}" fn_script_log_fatal "Unable to stop ${servername}"
fi fi
} }
# checks if the server is already stopped before trying to stop. # checks if the server is already stopped before trying to stop.
fn_stop_pre_check(){ fn_stop_pre_check(){
if [ "${gamename}" == "TeamSpeak 3" ]; then # Is the server already stopped
check_status.sh if [ "${status}" == "0" ]; then # $status comes from check_status.sh, which is run by check.sh for this command
if [ "${status}" == "0" ]; then fn_print_info_nl "${servername} is already stopped"
fn_print_info_nl "${servername} is already stopped" fn_script_log_error "${servername} is already stopped"
fn_script_log_error "${servername} is already stopped" elif [ "${gamename}" == "TeamSpeak 3" ]; then
else fn_stop_teamspeak3
fn_stop_teamspeak3
fi
else else
if [ "${status}" == "0" ]; then fn_stop_graceful_select
fn_print_info_nl "${servername} is already stopped" fi
fn_script_log_error "${servername} is already stopped" # Check status again, a stop tmux session if needed
else check_status.sh
fn_stop_graceful_select if [ "${status}" != "0" ]; then
fi fn_stop_tmux
fi fi
} }
@ -307,4 +297,8 @@ sleep 0.5
check.sh check.sh
info_config.sh info_config.sh
fn_stop_pre_check fn_stop_pre_check
# Remove lockfile
if [ -f "${rootdir}/${lockselfname}" ]; then
rm -f "${rootdir}/${lockselfname}"
fi
core_exit.sh core_exit.sh

Loading…
Cancel
Save