Fix typos in Ironic docs

Change-Id: I96dac53f9a23b24716313c88205ad0cbe6bbb9c8
This commit is contained in:
Mitsuhiro SHIGEMATSU 2015-05-11 16:40:58 +09:00
parent 3ddc26ef0c
commit acdec5b592
4 changed files with 13 additions and 13 deletions

View File

@ -890,8 +890,8 @@ controller in your bare metal server by using ``ipmitool``::
*Note:*
#. This is not the bare metal servers main IP. The IPMI controller
should have its own unique IP.
#. This is not the bare metal server's main IP. The IPMI controller
should have it's own unique IP.
#. In case the above command doesn't return the power status of the
bare metal server, check for these:

View File

@ -27,7 +27,7 @@ your Nova and Ironic services are as follows:
- Install new python-ironicclient code.
- Restart Nova services.
- Install new Ironic code, run database migrations, restart Ironic services.
- Edit nova.conf and set force_config_drive to your liking, restaring
- Edit nova.conf and set force_config_drive to your liking, restarting
nova-compute if necessary.
Note that during the period between Nova's upgrade and Ironic's upgrades,

View File

@ -22,8 +22,8 @@ Install prerequisites:
sudo yum install python-devel openssl-devel python-pip mysql-devel libxml2-devel libxslt-devel postgresql-devel git git-review libffi-devel gettext ipmitool psmisc graphviz
If using RHEL and yum reports “No package python-pip available” and “No
package git-review available, use the EPEL software repository.
If using RHEL and yum reports "No package python-pip available" and "No
package git-review available", use the EPEL software repository.
Instructions can be found at `<http://fedoraproject.org/wiki/EPEL/FAQ#howtouse>`_.
- openSUSE/SLE 12::

View File

@ -57,12 +57,12 @@ While performing the request, a lock is held on the node, and other
requests for the node will be delayed and may fail with an HTTP 409
(Conflict) error code.
This endpoint exposes a nodes driver directly, and as such, it is
expressly not part of Ironics standard REST API. There is only a
This endpoint exposes a node's driver directly, and as such, it is
expressly not part of Ironic's standard REST API. There is only a
single HTTP endpoint exposed, and the semantics of the message body
are determined solely by the driver. Ironic makes no guarantees about
backwards compatibility; this is solely up to the discretion of each
drivers author.
driver's author.
To get information about all the methods available via the vendor_passthru
endpoint for a particular node, you can issue an HTTP GET request::
@ -70,8 +70,8 @@ endpoint for a particular node, you can issue an HTTP GET request::
GET /v1/nodes/<Node UUID or name>/vendor_passthru/methods
The response's JSON body will contain information for each method,
such as the methods name, a description, the HTTP methods supported,
and whether its asynchronous or synchronous.
such as the method's name, a description, the HTTP methods supported,
and whether it's asynchronous or synchronous.
Driver Vendor Passthru
@ -100,7 +100,7 @@ A method:
HTTP 409 (Conflict) error code.
Ironic makes no guarantees about the semantics of the message BODY sent
to this endpoint. That is left up to each drivers author.
to this endpoint. That is left up to each driver's author.
To get information about all the methods available via the driver
vendor_passthru endpoint, you can issue an HTTP GET request::
@ -108,5 +108,5 @@ vendor_passthru endpoint, you can issue an HTTP GET request::
GET /v1/drivers/<driver name>/vendor_passthru/methods
The response's JSON body will contain information for each method,
such as the methods name, a description, the HTTP methods supported,
and whether its asynchronous or synchronous.
such as the method's name, a description, the HTTP methods supported,
and whether it's asynchronous or synchronous.