auto: sync 2026-05-28

This commit is contained in:
2026-05-28 10:01:49 +02:00
parent 0e406069f1
commit ec01ccfdfb
6 changed files with 240 additions and 6 deletions
+14
View File
@@ -0,0 +1,14 @@
#!/bin/bash
set -e
CT104="root@192.168.1.40"
STAGING="/mnt/pve/unas/services/n8n"
# Rsync n8n data (config, nodes, storage) — skip logs and temp files
rsync -rlptD --no-owner --no-group --delete \
--exclude='*.log' \
--exclude='crash.journal' \
--exclude='*.json' \
"$CT104":/opt/stacks/n8n/data/ "$STAGING/"
echo "[$(date)] n8n-prestage: done"