From 40caefe7cfe8b50dce073ab63f2ea094a1f94100 Mon Sep 17 00:00:00 2001 From: Patrick Canterino Date: Tue, 18 Jan 2022 19:18:30 +0100 Subject: [PATCH] Renamed $configRotate to $configBackupRotate --- psmysqlbackup.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/psmysqlbackup.ps1 b/psmysqlbackup.ps1 index d5eacb1..9f6b4e9 100644 --- a/psmysqlbackup.ps1 +++ b/psmysqlbackup.ps1 @@ -25,12 +25,12 @@ $configMysqldumpCli = "C:\Program Files\MariaDB 10.5\bin\mysqldump.exe" # Directory where to store the backups $configBackupDir = "backup" # Number of backups to keep, set to 0 to keep all backups -$configRotate = 7 +$configBackupRotate = 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 +# You should set this to at least the same as $configBackupRotate $configLogRotate = 7 # Databases to backup, leave empty to backup all databases @@ -297,7 +297,7 @@ foreach($d in $databasesToBackup) { try { Create-Backup $d $databaseBackupFile - Invoke-FileRotation -Dir $databaseBackupDir -MaxFiles $configRotate -Pattern $patternBackupFile -LogFile $logFile + Invoke-FileRotation -Dir $databaseBackupDir -MaxFiles $configBackupRotate -Pattern $patternBackupFile -LogFile $logFile } catch { Write-Log "Could not backup database $d to $databaseBackupFile" -Path $logFile -Level Error -- 2.34.1