Buildbot Setup for VM Host
Instructions for configuring the host machine that manages virtualized Buildbot workers.
ssh <host>.mariadb.net
sudo apt-get update
sudo apt-get dist-upgradesudo apt-get install tree renameutils vim-noxvi /etc/rsyncd.confvm_master="hostname" # ask for this from a buildbot admin
mkdir /home/kvm
ln -sv /home/kvm /kvm
rsync --dry-run --delete --exclude=deprecated \\
--exclude=iso --exclude=lost+found -avPL ${vm_master}::kvm/ /home/kvm/
# assuming the dry-run looks good, start the "real" rsync in a screen session
screen
rsync --delete --exclude=deprecated --exclude=iso --exclude=lost+found -avPL ${vm_master}::kvm/ /home/kvm/Last updated
Was this helpful?

