]> review.fuel-infra Code Review - openstack-build/heat-build.git/commitdiff
Getting Started: Fix formatting errors
authorZane Bitter <zbitter@redhat.com>
Wed, 14 Nov 2012 14:16:54 +0000 (15:16 +0100)
committerZane Bitter <zbitter@redhat.com>
Wed, 14 Nov 2012 14:17:19 +0000 (15:17 +0100)
Change-Id: If174fe7f54caa227996d0d779b28be8eb2050888
Signed-off-by: Zane Bitter <zbitter@redhat.com>
docs/GettingStarted.rst

index b630b4e7734674972d346cd647f9913e9d97838b..ad5dab041e3fc869c59367edaa5d1a7d81868aa0 100644 (file)
@@ -192,6 +192,7 @@ The heat engine configuration file should be updated with the address of the bri
     BRIDGE_IP=`echo $SUBNET | awk -F'[./]' '{printf "%d.%d.%d.%d", $1, $2, $3, or($4, 1)}'`
 
 ::
+
     sudo sed -i -e "/heat_metadata_server_url/ s/127\.0\.0\.1/${BRIDGE_IP}/" /etc/heat/heat-engine.conf
     sudo sed -i -e "/heat_waitcondition_server_url/ s/127\.0\.0\.1/${BRIDGE_IP}/" /etc/heat/heat-engine.conf
     sudo sed -i -e "/heat_watch_server_url/ s/127\.0\.0\.1/${BRIDGE_IP}/" /etc/heat/heat-engine.conf
@@ -323,14 +324,12 @@ Some templates require the ``heat-metadata`` server also. The metadata server mu
     
     sudo -E bash -c 'heat-metadata &'
 
-Open up port 8002 so that the guests can communicate with the heat-metadata server:
+Open up port 8002 so that the guests can communicate with the heat-metadata server::
 
-::
     sudo iptables -I INPUT -p tcp --dport 8002 -j ACCEPT -i demonetbr0
 
-Note Instance/resource metadata is actually now served via the cloudformation API, so it is necessary to also open up port 8000 so that the guests can communicate with the heat-api-cfn server:
+Note Instance/resource metadata is actually now served via the cloudformation API, so it is necessary to also open up port 8000 so that the guests can communicate with the heat-api-cfn server::
 
-::
     sudo iptables -I INPUT -p tcp --dport 8000 -j ACCEPT -i demonetbr0
 
 Note the above rules will not persist across reboot, so you may wish to add them to /etc/sysconfig/iptables
@@ -342,9 +341,8 @@ If you wish to try any of the HA or autoscaling templates (which collect stats f
 
     sudo -E bash -c 'heat-api-cloudwatch &'
 
-Open up port 8003 so that the guests can communicate with the heat-api-cloudwatch server:
+Open up port 8003 so that the guests can communicate with the heat-api-cloudwatch server::
 
-::
     sudo iptables -I INPUT -p tcp --dport 8003 -j ACCEPT -i demonetbr0
 
 Note the above rule will not persist across reboot, so you may wish to add it to /etc/sysconfig/iptables