mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 04:02:37 +03:00
116 lines
5.8 KiB
Batchfile
116 lines
5.8 KiB
Batchfile
@echo off
|
|
:: Based off of Server Launch Script by r4z0r49
|
|
:: Script Modified and fixed by Sykotix - http://dayz.sykotix.com
|
|
::
|
|
:: Usage: dayzsrv-log-rotater.bat servername
|
|
:: Example 1 - Will update using default profile: dayzsrv-log-rotater.bat
|
|
:: Example 2 - Will update using profile for US6: dayzsrv-log-rotater.bat US6
|
|
|
|
:::::::::::::: CONFIG ::::::::::::::::::
|
|
|
|
:: Set your Arma2AO Base installation directory. LEAVE OFF THE ENDING \
|
|
set arma2srvpath=C:\Program Files (x86)\Steam\SteamApps\common\Arma 2 Operation Arrowhead
|
|
|
|
:: Set your Default server profile name. This is the name of the directory that stores your server.cfg
|
|
:: This will be used in the case that you don't launch this script without the server param.
|
|
:: Example: cfgdayz, US6, Chicago13, ect
|
|
:: DEFAULTPROFILE
|
|
set srvname=instance_12_duala
|
|
|
|
:: Delete Original log files after they have been rotated? This keeps your logs more organized and saves space.
|
|
:: This will not work unless the server is stopped first. This option works best set to 1 when using FireDaemon's Pre/Post Service tab
|
|
set deloriglogs=1
|
|
|
|
::::::::::: ADVANCED CONFIG ::::::::::::
|
|
:: Don't touch anything below this point unless you know what your doing.
|
|
|
|
:: Setting Server Profile to Use
|
|
IF "%1"=="" (
|
|
set servername=%srvname%
|
|
) else (
|
|
set servername=%1
|
|
)
|
|
|
|
TITLE DayZ %servername% Server Log Rotater
|
|
|
|
:: Set Debug Mode
|
|
set debug=0
|
|
:: Set Debug Timeout in seconds
|
|
set dbsecs=10
|
|
|
|
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
|
|
::::::::::::::::::::::::::: STOP EDITING ::::::::::::::::::::::::::::::::::::::
|
|
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
|
|
|
|
:: Display Debug output
|
|
if %debug% == 1 (
|
|
echo Server Name = %servername%
|
|
echo ArmaII Server Path = "%arma2srvpath%"
|
|
timeout %dbsecs%
|
|
)
|
|
|
|
:: Set Time and Date
|
|
SET HOUR=%time:~0,2%
|
|
SET dtStamp9=%date:~-4%%date:~4,2%%date:~7,2%_0%time:~1,1%%time:~3,2%_%time:~6,2%
|
|
SET dtStamp24=%date:~-4%%date:~4,2%%date:~7,2%_%time:~0,2%%time:~3,2%_%time:~6,2%
|
|
::Make Date Stamp
|
|
if "%HOUR:~0,1%" == " " (SET dtStamp=%dtStamp9%) else (SET dtStamp=%dtStamp24%)
|
|
ECHO Todays Date and time (%date%)(%time%) / %dtStamp%
|
|
if %debug% == 1 (
|
|
timeout %dbsecs%
|
|
)
|
|
|
|
echo (%date%) (%time%) Starting Log Rotation.
|
|
|
|
:: Make the Rotated Log Directorys
|
|
if exist "%arma2srvpath%\%servername%\RotatedLogs" goto maketsdir
|
|
mkdir "%arma2srvpath%\%servername%\RotatedLogs"
|
|
:maketsdir
|
|
if exist "%arma2srvpath%\%servername%\RotatedLogs\%dtStamp%" goto makebedir
|
|
mkdir "%arma2srvpath%\%servername%\RotatedLogs\%dtStamp%"
|
|
:makebedir
|
|
if exist "%arma2srvpath%\%servername%\RotatedLogs\%dtStamp%\BattlEye" goto rotatelogs
|
|
mkdir "%arma2srvpath%\%servername%\RotatedLogs\%dtStamp%\BattlEye"
|
|
|
|
:rotatelogs
|
|
:: Starting Log Rotation. If there are any other logs, just follow the format below, and make sure to NOT touch any of the varibles.
|
|
copy "%arma2srvpath%\%servername%\arma2oaserver.RPT" "%arma2srvpath%\%servername%\RotatedLogs\%dtStamp%\arma2oaserver.RPT"
|
|
copy "%arma2srvpath%\%servername%\arma2oaserver.mdmp" "%arma2srvpath%\%servername%\RotatedLogs\%dtStamp%\arma2oaserver.mdmp"
|
|
copy "%arma2srvpath%\%servername%\arma2oaserver.bidmp" "%arma2srvpath%\%servername%\RotatedLogs\%dtStamp%\arma2oaserver.bidmp"
|
|
copy "%arma2srvpath%\%servername%\server_log.txt" "%arma2srvpath%\%servername%\RotatedLogs\%dtStamp%\server_log.txt"
|
|
copy "%arma2srvpath%\%servername%\HiveExt.log" "%arma2srvpath%\%servername%\RotatedLogs\%dtStamp%\HiveExt.log"
|
|
copy "%arma2srvpath%\%servername%\BattlEye\scripts.log" "%arma2srvpath%\%servername%\RotatedLogs\%dtStamp%\BattlEye\scripts.log"
|
|
copy "%arma2srvpath%\%servername%\BattlEye\createvehicle.log" "%arma2srvpath%\%servername%\RotatedLogs\%dtStamp%\BattlEye\createvehicle.log"
|
|
copy "%arma2srvpath%\%servername%\BattlEye\mpeventhandler.log" "%arma2srvpath%\%servername%\RotatedLogs\%dtStamp%\BattlEye\mpeventhandler.log"
|
|
copy "%arma2srvpath%\%servername%\BattlEye\publicvariable.log" "%arma2srvpath%\%servername%\RotatedLogs\%dtStamp%\BattlEye\publicvariable.log"
|
|
copy "%arma2srvpath%\%servername%\BattlEye\publicvariableval.log" "%arma2srvpath%\%servername%\RotatedLogs\%dtStamp%\BattlEye\publicvariableval.log"
|
|
copy "%arma2srvpath%\%servername%\BattlEye\remoteexec.log" "%arma2srvpath%\%servername%\RotatedLogs\%dtStamp%\BattlEye\remoteexec.log"
|
|
copy "%arma2srvpath%\%servername%\BattlEye\setdamage.log" "%arma2srvpath%\%servername%\RotatedLogs\%dtStamp%\BattlEye\setdamage.log"
|
|
copy "%arma2srvpath%\%servername%\BattlEye\setpos.log" "%arma2srvpath%\%servername%\RotatedLogs\%dtStamp%\BattlEye\setpos.log"
|
|
copy "%arma2srvpath%\%servername%\BattlEye\setvariable.log" "%arma2srvpath%\%servername%\RotatedLogs\%dtStamp%\BattlEye\setvariable.log"
|
|
copy "%arma2srvpath%\%servername%\BattlEye\addmagazinecargo.log" "%arma2srvpath%\%servername%\RotatedLogs\%dtStamp%\BattlEye\addmagazinecargo.log"
|
|
|
|
echo (%date%) (%time%) Logs are backed up now...
|
|
echo (%date%) (%time%) Removing original log files.
|
|
del /Q /F "%arma2srvpath%\%servername%\arma2oaserver.RPT"
|
|
del /Q /F "%arma2srvpath%\%servername%\arma2oaserver.mdmp"
|
|
del /Q /F "%arma2srvpath%\%servername%\arma2oaserver.bidmp"
|
|
del /Q /F "%arma2srvpath%\%servername%\server_console.log"
|
|
del /Q /F "%arma2srvpath%\%servername%\runtime.log"
|
|
del /Q /F "%arma2srvpath%\%servername%\BattlEye\scripts.log"
|
|
del /Q /F "%arma2srvpath%\%servername%\BattlEye\createvehicle.log"
|
|
del /Q /F "%arma2srvpath%\%servername%\BattlEye\mpeventhandler.log"
|
|
del /Q /F "%arma2srvpath%\%servername%\BattlEye\publicvariable.log"
|
|
del /Q /F "%arma2srvpath%\%servername%\BattlEye\publicvariableval.log"
|
|
del /Q /F "%arma2srvpath%\%servername%\BattlEye\remoteexec.log"
|
|
del /Q /F "%arma2srvpath%\%servername%\BattlEye\setdamage.log"
|
|
del /Q /F "%arma2srvpath%\%servername%\BattlEye\setpos.log"
|
|
del /Q /F "%arma2srvpath%\%servername%\BattlEye\setvariable.log"
|
|
del /Q /F "%arma2srvpath%\%servername%\BattlEye\addmagazinecargo.log"
|
|
|
|
if %debug% == 1 (
|
|
timeout %dbsecs%
|
|
)
|
|
|
|
:: We're done here.
|
|
exit |