rsync portage to all xen hosts
if you run more then one gentoo machine, this might be helpfull.
On the host, where your portage tree is up to date, you can use a script to rsync the tree to the other hosts:
On the host, where your portage tree is up to date, you can use a script to rsync the tree to the other hosts:
#!/bin/sh
# simple script for rsyncing portage to dest host
TOIPS="10.0.0.2 10.0.0.3"
for ip in $TOIPS; do
rsync -avz --exclude packages --delete /usr/portage/ $ip:/usr/portage/
done
Kommentare
Keine (weiteren) neuen Kommentare erlaubt.
