Initial import of borg-restore

This commit is contained in:
Marek Miklewicz
2026-07-04 11:20:44 +02:00
commit bd66a92f30
24 changed files with 11365 additions and 0 deletions
Executable
+11
View File
@@ -0,0 +1,11 @@
#!/bin/sh
set -eu
PLUGIN_DIR="$(cd "$(dirname "$0")" && pwd)"
SCRIPT="$PLUGIN_DIR/scripts/uninstall.sh"
if [ ! -x "$SCRIPT" ]; then
chmod 755 "$SCRIPT" 2>/dev/null || true
fi
exec "$SCRIPT"