use short hostnames
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Simon Marsh 2021-12-27 16:38:21 +00:00
parent 47c3a14269
commit b173840863
Signed by: burble
GPG Key ID: 0FCCD13AE1CF7ED8

View File

@ -69,9 +69,10 @@ echo "Options: $opts $extra_args"
for host in "${rsync_hosts[@]}"
do
echo "Syncing to host: $host"
hostname="rsync.tier2.${host}.burble.dn42"
echo "Syncing to host: $hostname"
rsync $opts --delete -e "ssh -i '${key}'" $extra_args \
"$rsync_src" "root@${host}:${rsync_dst}"
"$rsync_src" "root@${hostname}:${rsync_dst}"
done
##########################################################################