]> git.p6c8.net - dsmonrot.git/blobdiff - dsmonrot.ps1
Updated TODO
[dsmonrot.git] / dsmonrot.ps1
index 8cefa451e8988a8789cc3ea23a30ed12bbdb7f3b..ffe4f461f7da51b1e8a3dd297d2bb4753772cd87 100644 (file)
@@ -215,7 +215,7 @@ function Send-Email([String]$body) {
        }\r
 }\r
 \r
-function Rotate-Backup {\r
+function Invoke-BackupRotation {\r
        if($keepMonths -lt 0) {\r
                return\r
        }\r
@@ -235,7 +235,7 @@ function Rotate-Backup {
        }\r
 }\r
 \r
-function Rotate-Log {\r
+function Invoke-LogRotation {\r
        if($keepLogs -le 0) {\r
                return\r
        }\r
@@ -337,7 +337,7 @@ if($errorMessages.Count -eq 0) {
                }\r
 \r
                # Check if the backup target for this month, the directory for the full backup\r
-               # and the hash files exists. In this case we do a differential backup.\r
+               # and the hash files exist. In that case we do a differential backup.\r
                if((Test-Path $backupTarget) -and (Test-Path $backupTargetFull) -and (Test-Path "$backupTargetFull\*.hsh")) {\r
                        # Do a differential backup\r
                \r
@@ -407,7 +407,7 @@ if($errorMessages.Count -eq 0) {
                                \r
                                if($errorMessages.Count -eq 0) {\r
                                        if($rotateBeforeBackup) {\r
-                                               Rotate-Backup\r
+                                               Invoke-BackupRotation\r
                                        }\r
                                        \r
                                        $dsLogPath = if($dsLogFileToBackup) { "$backupTargetFull\$dsLogFile" } else { $dsLogFile }\r
@@ -429,7 +429,7 @@ if($errorMessages.Count -eq 0) {
                                        }\r
                                        \r
                                        if($rotateBeforeBackup -eq $False -and $success -eq $True) {\r
-                                               Rotate-Backup\r
+                                               Invoke-BackupRotation\r
                                        }\r
                                }\r
                        }\r
@@ -450,7 +450,8 @@ if($errorMessages.Count -eq 0) {
        }\r
        \r
        # Rotate the log files\r
-       Rotate-Log\r
+       Invoke-LogRotation\r
+\r
 }\r
 \r
 # If there was any error message recorded, send a mail if configured\r

patrick-canterino.de