blob: ea228be2cd35a4f8331290aa58e596479a7fe581 [file] [log] [blame]
Sergio Slobodrianee4b2bc2017-06-05 10:08:59 -04001#!/bin/bash
2
3# This script is for development use. It copies all of the
4# required files and directories to the installer VM to
5# allow changes to be made without having to rebuild the
6# VM and it's registry which is time consuming.
7
8# usage devCopyTiInstaller.sh <ip-address>
9
10
11rm -f install.cfg
12rm -fr .test
13mkdir .test
14hosts=""
15for i in `virsh list | awk '{print $2}' | grep ha-serv`
16do
17 ipAddr=`virsh domifaddr $i | tail -n +3 | head -n 1 | awk '{print $4}' | sed -e 's~/.*~~'`
18 hosts="$hosts $ipAddr"
19 hName=`echo $i | sed -e 's/install_//'`
20 cat .vagrant/machines/$hName/libvirt/private_key > .test/$ipAddr
21done
22echo "hosts=\"$hosts\"" >> install.cfg