blob: 924667b1683277d2c2f9f51403d5730294b64d65 [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
Sergio Slobodrianc5477712017-06-07 11:56:56 -040011sed -i -e '/^#/!d' install.cfg
Sergio Slobodrianee4b2bc2017-06-05 10:08:59 -040012rm -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
Sergio Slobodrianc5477712017-06-07 11:56:56 -040023echo 'iUser="vagrant"' >> install.cfg