Import alt-mysql plugin

This commit is contained in:
Marek Miklewicz
2026-07-04 15:48:19 +02:00
commit d71fcf9ace
101 changed files with 18635 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
#!/bin/bash
set -euo pipefail
PLUGIN_DIR="$(cd "$(dirname "$0")/.." && pwd)"
FILE="$PLUGIN_DIR/exec/lib/BackupQueueService.php"
fail() {
echo "FAIL: $*" >&2
exit 1
}
if grep -Fq '$safeBase,' "$FILE"; then
fail "BackupQueueService.php still references undefined safeBase"
fi
echo "backup_queue_service_test: OK"