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"
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 ####

12
lgsm/functions/command_validate.sh

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

4
lgsm/functions/install_server_files.sh

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

26
tests/tests_jc2server.sh

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

Loading…
Cancel
Save