diff options
author | Richard Jones <rjones@redhat.com> | 2010-06-02 13:27:19 +0100 |
---|---|---|
committer | Richard Jones <rjones@redhat.com> | 2010-06-02 15:33:02 +0100 |
commit | 1020b212b189968ead013436cac79019fbd8fdad (patch) | |
tree | f8eaabc8e607f608ad20d0c9c47119ea03903bc8 | |
parent | f2b7a8e15c49ebc70c7ea56aefb340362aae5a99 (diff) | |
download | libguestfs-1020b212b189968ead013436cac79019fbd8fdad.tar.gz libguestfs-1020b212b189968ead013436cac79019fbd8fdad.tar.xz libguestfs-1020b212b189968ead013436cac79019fbd8fdad.zip |
resize2fs: Document this command also works with ext4 (thanks Yufang Zhang).
-rwxr-xr-x | src/generator.ml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/generator.ml b/src/generator.ml index 571ea3a0..efc8bfd8 100755 --- a/src/generator.ml +++ b/src/generator.ml @@ -2641,9 +2641,9 @@ is lost."); ("resize2fs", (RErr, [Device "device"]), 106, [], [], (* lvresize tests this *) - "resize an ext2/ext3 filesystem", + "resize an ext2, ext3 or ext4 filesystem", "\ -This resizes an ext2 or ext3 filesystem to match the size of +This resizes an ext2, ext3 or ext4 filesystem to match the size of the underlying device. I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f> @@ -4708,7 +4708,7 @@ See also C<guestfs_pread>."); ("resize2fs_size", (RErr, [Device "device"; Int64 "size"]), 248, [], [], - "resize an ext2/ext3 filesystem (with size)", + "resize an ext2, ext3 or ext4 filesystem (with size)", "\ This command is the same as C<guestfs_resize2fs> except that it allows you to specify the new size (in bytes) explicitly."); |