Browse Source

Replaced insignificant spaces with tabs

pull/954/head
Marvin Lehmann 9 years ago
parent
commit
38cd98222e
  1. 2
      ARKSurvivalEvolved/arkserver
  2. 12
      lgsm/functions/command_validate.sh
  3. 4
      lgsm/functions/install_server_files.sh
  4. 26
      tests/tests_jc2server.sh
  5. 26
      tests/tests_ts3server.sh

2
ARKSurvivalEvolved/arkserver

@ -40,7 +40,7 @@ ip="0.0.0.0"
updateonstart="off" updateonstart="off"
fn_parms(){ fn_parms(){
parms="TheIsland?listen?MultiHome=${ip}?SessionName=${servername}?MaxPlayers=${maxplayers}?QueryPort=${queryport}?RCONPort=${rconport}?Port=${port}?ServerAdminPassword=${rconpassword}" parms="TheIsland?listen?MultiHome=${ip}?SessionName=${servername}?MaxPlayers=${maxplayers}?QueryPort=${queryport}?RCONPort=${rconport}?Port=${port}?ServerAdminPassword=${rconpassword}"
} }
#### Advanced Variables #### #### Advanced Variables ####

12
lgsm/functions/command_validate.sh

@ -19,7 +19,7 @@ fn_validation(){
cd "${rootdir}/steamcmd" cd "${rootdir}/steamcmd"
if [ $(command -v stdbuf) ]; then if [ $(command -v stdbuf) ]; then
unbuffer="stdbuf -i0 -o0 -e0" unbuffer="stdbuf -i0 -o0 -e0"
fi fi
@ -47,11 +47,11 @@ check.sh
check_status.sh check_status.sh
if [ "${status}" != "0" ]; then if [ "${status}" != "0" ]; then
exitbypass=1 exitbypass=1
command_stop.sh command_stop.sh
fn_validation fn_validation
exitbypass=1 exitbypass=1
command_start.sh command_start.sh
else else
fn_validation fn_validation
fi fi
core_exit.sh core_exit.sh

4
lgsm/functions/install_server_files.sh

@ -46,8 +46,8 @@ fn_install_server_files_steamcmd(){
fi fi
# Detects if unbuffer command is available. # Detects if unbuffer command is available.
if [ $(command -v stdbuf) ]; then if [ $(command -v stdbuf) ]; then
unbuffer="stdbuf -i0 -o0 -e0" unbuffer="stdbuf -i0 -o0 -e0"
fi fi
if [ "${counter}" -le "4" ]; then if [ "${counter}" -le "4" ]; then

26
tests/tests_jc2server.sh

@ -179,19 +179,19 @@ fn_setstatus(){
else else
(command_stop.sh > /dev/null 2>&1) (command_stop.sh > /dev/null 2>&1)
fi fi
if [ "${counter}" -gt "5" ]; then if [ "${counter}" -gt "5" ]; then
currentstatus="FAIL" currentstatus="FAIL"
echo "Current status: ${currentstatus}" echo "Current status: ${currentstatus}"
echo "" echo ""
echo "Unable to start or stop server." echo "Unable to start or stop server."
exit 1 exit 1
fi fi
done done
echo -ne "New status: ${currentstatus}\\r" echo -ne "New status: ${currentstatus}\\r"
echo -e "\n" echo -e "\n"
echo "Test starting:" echo "Test starting:"
echo "" echo ""
sleep 0.5 sleep 0.5
} }
# End of every test will expect the result to either pass or fail # End of every test will expect the result to either pass or fail

26
tests/tests_ts3server.sh

@ -168,19 +168,19 @@ fn_setstatus(){
else else
(command_stop.sh > /dev/null 2>&1) (command_stop.sh > /dev/null 2>&1)
fi fi
if [ "${counter}" -gt "5" ]; then if [ "${counter}" -gt "5" ]; then
currentstatus="FAIL" currentstatus="FAIL"
echo "Current status: ${currentstatus}" echo "Current status: ${currentstatus}"
echo "" echo ""
echo "Unable to start or stop server." echo "Unable to start or stop server."
exit 1 exit 1
fi fi
done done
echo -ne "New status: ${currentstatus}\\r" echo -ne "New status: ${currentstatus}\\r"
echo -e "\n" echo -e "\n"
echo "Test starting:" echo "Test starting:"
echo "" echo ""
sleep 0.5 sleep 0.5
} }
# End of every test will expect the result to either pass or fail # End of every test will expect the result to either pass or fail

Loading…
Cancel
Save