From 2b3d37ae3be5a834c15e4c401ded6afa7f40df4b Mon Sep 17 00:00:00 2001 From: Sinval Vieira Date: Wed, 17 Jun 2015 00:17:58 -0300 Subject: [PATCH] Fixes a bug on the iLO driver tutorial There is a wrong command on the iLO Ironic driver tutorial page. The command is in the "Registering Proliant node in Ironic" session (http://docs.openstack.org/developer/ironic/drivers/ilo.html#id31), it is used to create a Ironic node that should use the iLO driver, so there are some parameters to be passed in the command. The problem is the lack of the "-i" argument just before the "ilo_address" and "deploy_ramdisk" parameters. The solution is to add the "-i" argument just before the "ilo_address" and "deploy_ramdisk" keys. By following a tutorial, the reader often copy the commands and small pieces of code that are provided by the tutorial itself, in doing so, when the copied part has a problem the error just delaying and sometimes difficult to understand the process causing a waste of time on debugging the problems that should not exist. This patch solves the problem by adding the "-i" argument on the command in ilo.rst file. Closes-Bug: #1465910 Change-Id: I6cd24b68deacbb9da022a4e34ae607b5c9c950a4 --- doc/source/drivers/ilo.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/drivers/ilo.rst b/doc/source/drivers/ilo.rst index e30f6995a1..5804a7019d 100644 --- a/doc/source/drivers/ilo.rst +++ b/doc/source/drivers/ilo.rst @@ -544,7 +544,7 @@ Nodes configured for iLO driver should have the ``driver`` property set to For example, you could run a similar command like below to enroll the Proliant node:: - ironic node-create -d pxe_ilo ilo_address= -i ilo_username= -i ilo_password= -i deploy_kernel= deploy_ramdisk= + ironic node-create -d pxe_ilo -i ilo_address= -i ilo_username= -i ilo_password= -i deploy_kernel= -i deploy_ramdisk= Boot modes ~~~~~~~~~~