Merge "Fix bad quoting in quickstart guide"

This commit is contained in:
Jenkins 2015-04-08 00:05:42 +00:00 committed by Gerrit Code Review
commit 54c9af6cb4

View File

@ -366,11 +366,11 @@ Source credentials, create a key, and spawn an instance::
.. note::
Because devstack create multiple networks, we need to pass an additional parameter
`--nic net-id` to the nova boot command when using the admin account, for example:
``--nic net-id`` to the nova boot command when using the admin account, for example::
net_id=$(neutron net-list | egrep "$PRIVATE_NETWORK_NAME"'[^-]' | awk '{ print $2 }')
net_id=$(neutron net-list | egrep "$PRIVATE_NETWORK_NAME"'[^-]' | awk '{ print $2 }')
nova boot --flavor baremetal --nic net-id=$net_id --image $image --key-name default testing
nova boot --flavor baremetal --nic net-id=$net_id --image $image --key-name default testing
As the demo tenant, you should now see a Nova instance building::