diff --git a/ChangeLog b/ChangeLog index 7818483058..a690a52ef3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Thu Dec 4 09:45:00 EST 2008 Cole Robinson + + * 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 * src/qemu_driver.c: Increase timeout for initial monitor poll diff --git a/docs/formatstorage.html.in b/docs/formatstorage.html.in index 7cd4731da9..366339af1c 100644 --- a/docs/formatstorage.html.in +++ b/docs/formatstorage.html.in @@ -245,17 +245,10 @@
path
-
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 /dev/ 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 /dev/disk/by-{path,id,uuid,label locations. - Since 0.4.1 -
+
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. + Since 0.4.1
format
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 40e8e80da5..2d48a59521 100644 --- a/docs/storage.html.in +++ b/docs/storage.html.in @@ -343,12 +343,12 @@ libvirt.

Valid pool format types

- The logical volume pool does not use the pool format type element. + The iSCSI volume pool does not use the pool format type element.

Valid volume format types

- The logical volume pool does not use the volume format type element. + The iSCSI volume pool does not use the volume format type element.

diff --git a/src/virsh.c b/src/virsh.c index 5a8d5e3b77..df12b8b0b0 100644 --- a/src/virsh.c +++ b/src/virsh.c @@ -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;