Merge "Edits glance setup section in osbash"

This commit is contained in:
Jenkins 2014-11-23 01:36:24 +00:00 committed by Gerrit Code Review
commit 2bb48ab9b1

View File

@ -9,9 +9,10 @@ exec_logfile
indicate_current_auto
#------------------------------------------------------------------------------
# Set up Image Service (glance).
#------------------------------------------------------------------------------
#-----------------------------------------------------------------------------------------
# Install the Image Service (glance).
# http://docs.openstack.org/icehouse/install-guide/install/apt/content/glance-install.html
#-----------------------------------------------------------------------------------------
echo "Installing glance."
sudo apt-get install -y glance python-glanceclient
@ -98,9 +99,10 @@ echo "Restarting glance service."
sudo service glance-registry restart
sudo service glance-api restart
#------------------------------------------------------------------------------
# Add CirrOS image.
#------------------------------------------------------------------------------
#----------------------------------------------------------------------------------------
# Verify the Image Service installation
# http://docs.openstack.org/icehouse/install-guide/install/apt/content/glance-verify.html
#----------------------------------------------------------------------------------------
echo "Waiting for glance to start."
until glance image-list >/dev/null 2>&1; do
@ -114,10 +116,6 @@ glance image-create \
--container-format bare \
--disk-format qcow2 < "$HOME/img/$(basename $CIRROS_URL)"
#------------------------------------------------------------------------------
# Verify the Image Service installation
#------------------------------------------------------------------------------
echo "Verifying that the image was successfully added to the service."
echo "glance image-list"