diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2011-01-07 20:38:55 +0000 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2011-01-10 09:41:54 +0000 |
commit | 03097193078ad01c33148716726a03262e3c72ab (patch) | |
tree | 7a015a9c6b675fc0537b52f6f06c9f7805efb966 | |
parent | 7fdd632ec0ff72637b04e4c4a08c1f27f85fd946 (diff) | |
download | libguestfs-03097193078ad01c33148716726a03262e3c72ab.tar.gz libguestfs-03097193078ad01c33148716726a03262e3c72ab.tar.xz libguestfs-03097193078ad01c33148716726a03262e3c72ab.zip |
resize: Fix typo in man page (thanks avesh@IRC).
(cherry picked from commit 7e1114445e713c4a15f3f2cede5842044de1735a)
-rwxr-xr-x | tools/virt-resize | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/virt-resize b/tools/virt-resize index 76abb1e7..4beb45b5 100755 --- a/tools/virt-resize +++ b/tools/virt-resize @@ -67,7 +67,7 @@ Copy C<olddisk> to C<newdisk>, extending one of the guest's partitions to fill the extra 5GB of space. truncate -r olddisk newdisk; truncate -s +5G newdisk - virt-filesystems --long --h --all -a olddisk + virt-filesystems --long -h --all -a olddisk # Note "/dev/sda2" is a partition inside the "olddisk" file. virt-resize --expand /dev/sda2 olddisk newdisk |