Initial Backupper Unraid plugin

This commit is contained in:
Mikei386
2026-06-13 22:07:31 +02:00
commit 5352a9da22
39 changed files with 3167 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/bin/bash
set -e
CONFIG=/boot/config/plugins/backupper
mkdir -p "$CONFIG" /run/backupper /var/lib/backupper
chmod 0700 "$CONFIG"
chmod 0750 /run/backupper /var/lib/backupper
if [ -x /etc/rc.d/rc.backupper ]; then
/etc/rc.d/rc.backupper restart || true
fi