mirror of
https://github.com/bensuperpc/infrastructure.git
synced 2025-06-23 10:53:34 +02:00
Update scripts
This commit is contained in:
13
tools/sync_data.sh
Executable file
13
tools/sync_data.sh
Executable file
@ -0,0 +1,13 @@
|
||||
#!/bin/bash
|
||||
set -euo pipefail
|
||||
|
||||
if [ "$#" -ne 2 ]; then
|
||||
echo "Usage: $0 <source> <destination>"
|
||||
echo "Example: $0 admin@192.168.1.2:/mydata/backup /local/backup"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
SOURCE="${1}"
|
||||
DEST="${2}"
|
||||
|
||||
rsync -e 'ssh -p 2222' --progress --human-readable --archive --verbose --compress --acls --xattrs --bwlimit=30000 --stats --delete-during "${SOURCE}" "${DEST}"
|
Reference in New Issue
Block a user