Hey FreeBSD
I have a little server farm of CentOS based virtual machines hosted on Xen. I have a reasonably secure environment behind a decent firewall setup between the switch and the router so I don't mind doing this and would like the kind of mobility this would provide on my network. The source host is FreeBSD and all the destination hosts are CentOS 5.5i
I wrote a little bash script that should accomplish this:
But for some reason after rsyncing this directory to all those hosts I am not able to log in as if I were able to tediously go through the motions of scp, cat, etc on each one.
I was wondering if someone could shed a little light here?
I have a little server farm of CentOS based virtual machines hosted on Xen. I have a reasonably secure environment behind a decent firewall setup between the switch and the router so I don't mind doing this and would like the kind of mobility this would provide on my network. The source host is FreeBSD and all the destination hosts are CentOS 5.5i
I wrote a little bash script that should accomplish this:
Code:
#!/bin/sh
HOSTS="sum1 virt1 virt2 virt3 virt4 virt5 virt6 virt7 virt8 virt9 virt10"
for i in $HOSTS; do
/usr/local/bin/rsync -avz /home/bluethundr/.ssh/ $i:/home/bluethundr/.ssh
done
But for some reason after rsyncing this directory to all those hosts I am not able to log in as if I were able to tediously go through the motions of scp, cat, etc on each one.
I was wondering if someone could shed a little light here?