|
|
@ -17,13 +17,15 @@ cat <<-EOT |
|
|
|
root@yoda.geeks.cl 2203 /etc/opt/djbdns/tinydns/root |
|
|
|
root@atlien.geeks.cl 22 /etc/opt/djbdns/tinydns/root |
|
|
|
root@koke.socomep.cl 2203 /etc/opt/djbdns/tinydns/root |
|
|
|
root@188.40.92.201 2201 /etc/opt/djbdns/tinydns/root |
|
|
|
root@85.25.151.48 2201 /etc/opt/djbdns/tinydns/root |
|
|
|
EOT |
|
|
|
) | while read REMOTE PORT DIR; do |
|
|
|
( |
|
|
|
export RSYNC_RSH="ssh -p $PORT" |
|
|
|
echo "=== $REMOTE:$PORT ($DIR) ===" |
|
|
|
rsync -a root/Makefile "$REMOTE:$DIR" && |
|
|
|
rsync -a $RSYNCOPT $DIRS "$REMOTE:$DIR" && |
|
|
|
ssh -p $PORT $REMOTE make -B -C "$DIR" data.cdb |
|
|
|
rsync -a root/Makefile "$REMOTE:$DIR/" |
|
|
|
rsync -a $RSYNCOPT $DIRS "$REMOTE:$DIR/" |
|
|
|
ssh -p $PORT $REMOTE make -B -C "$DIR/" data.cdb |
|
|
|
) < /dev/null |
|
|
|
done |