From: Narinder Gupta Date: Wed, 30 Sep 2015 21:14:54 +0000 (-0500) Subject: to create default pool in virsh X-Git-Tag: brahmaputra.1.0~164 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=f3c28248e67eeec3a871844e7d528446421e5507;p=joid.git to create default pool in virsh Change-Id: I13c94a371e85f12aac12c751fcd5723490efad66 --- diff --git a/ci/02-maasdeploy.sh b/ci/02-maasdeploy.sh index 2df7c0a8..d8afb0c5 100755 --- a/ci/02-maasdeploy.sh +++ b/ci/02-maasdeploy.sh @@ -18,16 +18,15 @@ case "$1" in esac echo "... Deployment of maas Started ...." -sudo apt-add-repository ppa:maas-deployers/stable -y -sudo apt-get update -y -sudo apt-get install maas-deployer -y -if [ ! -e /home/ubuntu/.ssh/id_rsa ]; then - ssh-keygen -N '' -f /home/ubuntu/.ssh/id_rsa +if [ ! -e $HOME/.ssh/id_rsa ]; then + ssh-keygen -N '' -f $HOME/.ssh/id_rsa fi -sudo adduser ubuntu libvirtd -if [ ! 'virsh pool-list | grep default' ]; then +if [ ! -e /var/lib/libvirt/images ]; then + + sudo apt-get install libvirt-bin -y + sudo adduser ubuntu libvirtd virsh pool-define /dev/stdin < @@ -43,7 +42,11 @@ EOF fi -cat /home/ubuntu/.ssh/id_rsa.pub >> /home/ubuntu/.ssh/authorized_keys +sudo apt-add-repository ppa:maas-deployers/stable -y +sudo apt-get update -y +sudo apt-get install maas-deployer -y + +cat $HOME/.ssh/id_rsa.pub >> $HOME/.ssh/authorized_keys maas-deployer -c deployment.yaml -d --force echo "... Deployment of maas finish ...."