From 0a575f666db459ab559fdf25b7a6979ec871a35c Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Mon, 16 Apr 2018 13:19:04 +0200 Subject: [PATCH] Fixed & simplified log rotation changes from my previous commit --- lgsm/functions/command_start.sh | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/lgsm/functions/command_start.sh b/lgsm/functions/command_start.sh index 67c7c40a7..5c7b6ecf9 100644 --- a/lgsm/functions/command_start.sh +++ b/lgsm/functions/command_start.sh @@ -74,14 +74,16 @@ fn_start_tmux(){ # Log rotation fn_script_log_info "Rotating log files" - if [ "${engine}" == "unreal2" ]; then - if [ -f "${gamelog}" ]; then - mv "${gamelog}" "${gamelogdate}" - fi + if [ "${engine}" == "unreal2" ]&&[ -f "${gamelog}" ]; then + mv "${gamelog}" "${gamelogdate}" + fi + if [ -f "${lgsmlog}" ]; then mv "${lgsmlog}" "${lgsmlogdate}" + fi + if [ -f "${consolelog}" ]; then mv "${consolelog}" "${consolelogdate}" fi - + # Create lockfile date > "${rootdir}/${lockselfname}" cd "${executabledir}"