[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[libvirt] [PATCH] Fix a few docs errors
- From: Cole Robinson <crobinso redhat com>
- To: libvir-list redhat com
- Subject: [libvirt] [PATCH] Fix a few docs errors
- Date: Mon, 01 Dec 2008 17:36:57 -0500
The attached patch fixes a few cut and paste docs errors I've stumbled
upon, and a spelling error in a virsh command output.
Thanks,
Cole
diff --git a/docs/formatstorage.html.in b/docs/formatstorage.html.in
index 7cd4731..366339a 100644
--- a/docs/formatstorage.html.in
+++ b/docs/formatstorage.html.in
@@ -245,17 +245,10 @@
<dl>
<dt><code>path</code></dt>
- <dd>Provides the location at which the pool will be mapped into
- the local filesystem namespace. For a filesystem/directory based
- pool it will be the name of the directory in which volumes will
- be created. For device based pools it will be the name of the directory in which
- devices nodes exist. For the latter <code>/dev/</code> may seem
- like the logical choice, however, devices nodes there are not
- guaranteed stable across reboots, since they are allocated on
- demand. It is preferable to use a stable location such as one
- of the <code>/dev/disk/by-{path,id,uuid,label</code> locations.
- <span class="since">Since 0.4.1</span>
- </dd>
+ <dd>Provides the location at which the volume can be accessed on
+ the local filesystem, as an absolute path. This is a readonly
+ attribute, so shouldn't be specified when creating a volume.
+ <span class="since">Since 0.4.1</span></dd>
<dt><code>format</code></dt>
<dd>Provides information about the pool specific volume format.
For disk pools it will provide the partition type. For filesystem
diff --git a/docs/storage.html.in b/docs/storage.html.in
index 40e8e80..2d48a59 100644
--- a/docs/storage.html.in
+++ b/docs/storage.html.in
@@ -343,12 +343,12 @@ libvirt.
<h3>Valid pool format types</h3>
<p>
- The logical volume pool does not use the pool format type element.
+ The iSCSI volume pool does not use the pool format type element.
</p>
<h3>Valid volume format types</h3>
<p>
- The logical volume pool does not use the volume format type element.
+ The iSCSI volume pool does not use the volume format type element.
</p>
</body>
</html>
diff --git a/src/virsh.c b/src/virsh.c
index 4195781..0e52f6d 100644
--- a/src/virsh.c
+++ b/src/virsh.c
@@ -3167,7 +3167,7 @@ cmdPoolBuild(vshControl *ctl, const vshCmd *cmd)
return FALSE;
if (virStoragePoolBuild(pool, 0) == 0) {
- vshPrint(ctl, _("Pool %s builded\n"), name);
+ vshPrint(ctl, _("Pool %s built\n"), name);
} else {
vshError(ctl, FALSE, _("Failed to build pool %s"), name);
ret = FALSE;
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]