From: Patrick Canterino Date: Tue, 18 Jan 2022 18:18:30 +0000 (+0100) Subject: Renamed $configRotate to $configBackupRotate X-Git-Tag: 0.3~1 X-Git-Url: https://git.p6c8.net/psmysqlbackup.git/commitdiff_plain/40caefe7cfe8b50dce073ab63f2ea094a1f94100 Renamed $configRotate to $configBackupRotate --- 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