Document Metadata server in Getting Started guide

Change-Id: Id0995df10f329ee3076a2c60ed5eb1548eaa315a
Signed-off-by: Zane Bitter <zbitter@redhat.com>
This commit is contained in:
Zane Bitter 2012-06-01 14:42:12 +02:00
parent 5d5d8ba5dd
commit 6eb623580f
2 changed files with 2 additions and 2 deletions

View File

@ -187,7 +187,7 @@ Launch the Heat services
::
sudo -E bash -c 'heat-api & heat-engine &'
sudo -E bash -c 'heat-api & heat-engine & heat-metadata &'
..
sleep 5

View File

@ -25,7 +25,7 @@ user_wants() {
done
}
HEAT_PIDS=`pgrep '^heat-(api|engine)$'`
HEAT_PIDS=`pgrep '^heat-(api|engine|metadata)$'`
if [ -n "$HEAT_PIDS" ]; then
echo 'The following Heat processes are running:' 1>&2
ps $HEAT_PIDS 1>&2