From b1738408630d2f6f65c449094fca3b2fe2439645 Mon Sep 17 00:00:00 2001 From: Simon Marsh Date: Mon, 27 Dec 2021 16:38:21 +0000 Subject: [PATCH] use short hostnames --- rsync.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/rsync.sh b/rsync.sh index d59c59b..37b9a62 100755 --- a/rsync.sh +++ b/rsync.sh @@ -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 ##########################################################################