Removed nonexistent option from quickstart snippet

Neither `ironic-api` nor `ironic-conductor` tools accept
the `-v` option. Although the developer's quickstart guide
has it in the example what makes cut&paste failing.

This quick fix removes the offending option from the doc.

Change-Id: I31e3657f12f7a9cf64697b362cc168333752184c
This commit is contained in:
Ilya Etingof 2017-07-04 19:13:05 +02:00
parent 54d5335edd
commit 8e48156488

View File

@ -314,13 +314,13 @@ daemons; you can observe their output and stop them with Ctrl-C at any time.
cd ~/ironic
source .tox/venv/bin/activate
ironic-api -v -d --config-file etc/ironic/ironic.conf.local
ironic-api -d --config-file etc/ironic/ironic.conf.local
#. Start the Conductor service in debug mode and watch its output::
cd ~/ironic
source .tox/venv/bin/activate
ironic-conductor -v -d --config-file etc/ironic/ironic.conf.local
ironic-conductor -d --config-file etc/ironic/ironic.conf.local
Step 4: Interact with the running services
------------------------------------------