Add success message to instack-build-images

When image builds complete successfully, there's no obvious way to
know other than checking $?.  This adds an echo after the build
calls, which thanks to set -e should only be run if everything
completes successfully.

Change-Id: I4fac0b05b7340b12447f3a23747a2a347bc0d33f
This commit is contained in:
Ben Nemec 2015-03-30 14:25:12 -05:00
parent 899c9eb556
commit 561051f31d
1 changed files with 2 additions and 0 deletions

View File

@ -298,6 +298,8 @@ if [ "$image_build" = "all" ]; then
discovery-ramdisk
overcloud-control
overcloud-compute
echo "Successfully built all necessary images."
else
eval "$image_build"
echo "Successfully built $image_build image."
fi