From: Patrick Canterino Date: Tue, 28 Dec 2021 18:38:08 +0000 (+0100) Subject: Added comment in header of script file X-Git-Tag: 0.1~9 X-Git-Url: https://git.p6c8.net/psmysqlbackup.git/commitdiff_plain/ac3854af1a50a24ad787fca5b3c250d7f8563e78?ds=sidebyside;hp=694ded57142ef77ca04d8306843230943ab4b0c9 Added comment in header of script file --- diff --git a/psmysqlbackup.ps1 b/psmysqlbackup.ps1 index f67619b..9292ed4 100644 --- a/psmysqlbackup.ps1 +++ b/psmysqlbackup.ps1 @@ -1,3 +1,11 @@ +# PSMySQLBackup +# PowerShell script for backing up MySQL / MariaDB databases on Windows +# +# Author: Patrick Canterino +# WWW: https://www.patrick-canterino.de/ +# https://github.com/pcanterino/dsmonrot +# License: 2-Clause BSD License + # Config $configMysqlHost = "localhost" @@ -48,7 +56,7 @@ function Rotate-Backups($backupDir) { if($keepBackupsCount -ge 0) { $keepBackupsCount-- } - + if($keepBackupsCount -eq -1) { Write-Output "Deleting backup $($_.FullName)" Remove-Item -Force $_.FullName