mirror of
https://github.com/arnaucube/configs.git
synced 2026-02-10 04:26:41 +01:00
12 lines
280 B
Bash
Executable File
12 lines
280 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
SERVER=$1
|
|
|
|
if [ -z $SERVER ] ; then
|
|
echo "missing 1st argument (SERVER)"
|
|
exit 1
|
|
fi
|
|
|
|
|
|
rsync -avz --progress --exclude={'*.log','emby','jellyfin','qbittorrent','slskd','wallabag'} $SERVER:~/server-dockers/docker-compose.yml $SERVER:/mnt/usb/configurations ./
|