]> git.p6c8.net - psmysqlbackup.git/commitdiff
Allow to define exclusions based on regular expressions
authorPatrick Canterino <patrick@patrick-canterino.de>
Thu, 30 Dec 2021 14:53:47 +0000 (15:53 +0100)
committerPatrick Canterino <patrick@patrick-canterino.de>
Thu, 30 Dec 2021 14:53:47 +0000 (15:53 +0100)
Also, the databases matching the exclusions defined in $configDbExclude are now
removed later in the script. This means that when backing up a selection of
databases, $configDbExclude does not apply.

TODO.md
psmysqlbackup.ps1

diff --git a/TODO.md b/TODO.md
index 5b21437089e6bba9c10e12dd91d00a0b0a887bcd..09e348c4385c5cd7fe17e2b0655517dec5a46f5c 100644 (file)
--- a/TODO.md
+++ b/TODO.md
@@ -4,7 +4,7 @@
 - [x] Allow to define exclusions
 - [x] Backup a selection of databases
 - [x] Rotate backups after `n` backups
-- [ ] Allow to define exclusions based on regular expressions
+- [x] Allow to define exclusions based on regular expressions
 - [ ] Error handling
 - [ ] Configuration file
 - [ ] Write log file
index f248efd476bc9573b0ff052edbcf029cc9f85fb8..7e870ea347ab50e52f4dfd556e92dc07af29a8b1 100644 (file)
@@ -21,6 +21,7 @@ $configRotate = 7
 
 $configDbBackup = @()
 $configDbExclude = @("test")
+$configDbExcludePattern = @()
 
 # End of config
 
@@ -69,7 +70,7 @@ $defaultDbExclude = @("information_schema", "performance_schema")
 $currDaytime = Get-Date -format "yyyyMMdd-HHmmss"
 
 try {
-    $databases = Get-Databases | Where-Object {!($_ -in $defaultDbExclude -or $_ -in $configDbExclude)}
+    $databases = Get-Databases | Where-Object {!($_ -in $defaultDbExclude)}
 }
 catch {
     Write-Output "Failed to get list of databases"
@@ -90,7 +91,19 @@ if($configDbBackup -and $configDbBackup.count -gt 0) {
     }
 }
 else {
-    $databasesToBackup = $databases
+    :excludeOuter foreach($rDb in $databases) {
+        if($rDb -in $configDbExclude) {
+            continue;
+        }
+
+        foreach($cPattern in $configDbExcludePattern) {
+            if($rDb -match $cPattern) {
+                continue excludeOuter;
+            }
+        }
+
+        $databasesToBackup += $rDb
+    }
 }
 
 foreach($d in $databasesToBackup) {

patrick-canterino.de