From: Zane Bitter Date: Fri, 1 Jun 2012 12:42:12 +0000 (+0200) Subject: Document Metadata server in Getting Started guide X-Git-Tag: 2014.1~1596 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=6eb623580f3694caca284e264a2309ea2342a655;p=openstack-build%2Fheat-build.git Document Metadata server in Getting Started guide Change-Id: Id0995df10f329ee3076a2c60ed5eb1548eaa315a Signed-off-by: Zane Bitter --- diff --git a/docs/GettingStarted.rst b/docs/GettingStarted.rst index ddb550db..b8cc85f5 100644 --- a/docs/GettingStarted.rst +++ b/docs/GettingStarted.rst @@ -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 diff --git a/tools/uninstall-heat b/tools/uninstall-heat index 1cb79a60..e05ba017 100755 --- a/tools/uninstall-heat +++ b/tools/uninstall-heat @@ -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