From 8b6c416063774aa0d763cfb0809d63ad5aa48511 Mon Sep 17 00:00:00 2001 From: Patrick Canterino Date: Fri, 14 Jan 2022 20:37:08 +0100 Subject: [PATCH] Rotate logfiles --- psmysqlbackup.ps1 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/psmysqlbackup.ps1 b/psmysqlbackup.ps1 index bbfc075..ce17ca3 100644 --- a/psmysqlbackup.ps1 +++ b/psmysqlbackup.ps1 @@ -30,6 +30,7 @@ $configRotate = 7 # Directory where to store the logfiles $configLogDir = "log" # Number of logfiles to keep, set to 0 to keep all logfiles +# You should set this to at least the same as $configRotate $configLogRotate = 7 # Databases to backup, leave empty to backup all databases @@ -304,5 +305,7 @@ foreach($d in $databasesToBackup) { } } +Invoke-FileRotation -Dir $configLogDir -MaxFiles $configLogRotate -Pattern "^log-\d{8,}-\d{6}\.log$" -LogFile $logFile + $endTime = Get-Date -format "yyyy-MM-dd HH:mm:ss" Write-Log "Ended at $endTime" -Path $logFile \ No newline at end of file -- 2.34.1