]> xenbits.xensource.com Git - libvirt.git/commitdiff
Fix documentation cut and paste errors, and a virsh typo.
authorCole Robinson <crobinso@redhat.com>
Thu, 4 Dec 2008 14:51:57 +0000 (14:51 +0000)
committerCole Robinson <crobinso@redhat.com>
Thu, 4 Dec 2008 14:51:57 +0000 (14:51 +0000)
ChangeLog
docs/formatstorage.html.in
docs/storage.html.in
src/virsh.c

index 781848305883f55b82343518b2537c683e7207bb..a690a52ef346140765c46b612b389c5c2036cc05 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Thu Dec  4 09:45:00 EST 2008 Cole Robinson <crobinso@redhat.com>
+
+       * docs/formatstorage.html.in docs/storage.html.in : Fix some
+       documentation copy and paste errors.
+       * src/virsh.c : Fix a typo
+
 Thu Dec  4 09:42:00 EST 2008 Cole Robinson <crobinso@redhat.com>
 
        * src/qemu_driver.c: Increase timeout for initial monitor poll
index 7cd4731da91807e7732b0de01aa35455861c9853..366339af1c2749f298fc76b514bccb9a8abcc205 100644 (file)
 
     <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
index 40e8e80da50d1555257b949f7b0033c1f690d5a2..2d48a59521834f6e2c850f24c5d5c9e4b4a38cb1 100644 (file)
@@ -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>
index 5a8d5e3b77beaa45fc0d6ec39b099b53fcfaeeef..df12b8b0b0b3d946c16f26dd0c0ffb72d8f87eb6 100644 (file)
@@ -3168,7 +3168,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;