From 36d893de15158ae59e2188c1a6669cbd99b5ea42 Mon Sep 17 00:00:00 2001 From: Patrick Canterino Date: Tue, 18 Jan 2022 19:17:19 +0100 Subject: [PATCH] Created variables for file regexes --- psmysqlbackup.ps1 | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/psmysqlbackup.ps1 b/psmysqlbackup.ps1 index ce17ca3..d5eacb1 100644 --- a/psmysqlbackup.ps1 +++ b/psmysqlbackup.ps1 @@ -213,6 +213,9 @@ function Invoke-FileRotation { $defaultDbExclude = @("information_schema", "performance_schema") +$patternBackupFile = "^backup-.+-\d{8,}-\d{6}\.sql$" +$patternLogFile = "^log-\d{8,}-\d{6}\.log$" + $currDaytime = Get-Date -format "yyyyMMdd-HHmmss" $logFile = "$configLogDir\log-$currDaytime.log" @@ -294,7 +297,7 @@ foreach($d in $databasesToBackup) { try { Create-Backup $d $databaseBackupFile - Invoke-FileRotation -Dir $databaseBackupDir -MaxFiles $configRotate -Pattern "^backup-.+-\d{8,}-\d{6}\.sql$" -LogFile $logFile + Invoke-FileRotation -Dir $databaseBackupDir -MaxFiles $configRotate -Pattern $patternBackupFile -LogFile $logFile } catch { Write-Log "Could not backup database $d to $databaseBackupFile" -Path $logFile -Level Error @@ -305,7 +308,7 @@ foreach($d in $databasesToBackup) { } } -Invoke-FileRotation -Dir $configLogDir -MaxFiles $configLogRotate -Pattern "^log-\d{8,}-\d{6}\.log$" -LogFile $logFile +Invoke-FileRotation -Dir $configLogDir -MaxFiles $configLogRotate -Pattern $patternLogFile -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