feat: migration tool

This commit is contained in:
Strix 2023-10-29 16:19:27 +01:00
parent 460bccec1c
commit e5b4fcdf6f
No known key found for this signature in database
GPG key ID: 49B2E37B8915B774

12
tools/migration/sync-srv.sh Executable file
View file

@ -0,0 +1,12 @@
#!/bin/sh
if ! [ "$(id -u)" = "0" ]; then
echo "please perform as root, attempting to escalate privileges..."
exec sudo $(cat /proc/$$/cmdline | sed 's/\x00/ /g')
exit 1
fi
for service in $@; do
echo "syncing $service..."
rsync -avz root@neo.ixvd.net:/srv/$service /srv
done