Add test for virt-resize.
[libguestfs.git] / tools / virt-list-filesystems
index 9948095..921704b 100755 (executable)
@@ -143,22 +143,22 @@ foreach $dev (@partitions) {
     my $mountable = $@ ? 0 : 1;
     $g->umount_all ();
     if ($mountable) {
-       push @fses, $dev;
+        push @fses, $dev;
     } else {
-       push @not_mountable, $dev;
+        push @not_mountable, $dev;
     }
 }
 
 foreach $dev (@fses) {
     print canonicalize($dev);
     if ($long) {
-       my $fstype;
-       eval { $fstype = $g->vfs_type ($dev); };
-       if ($fstype) {
-           print " $fstype";
-       } else {
-           print " unknown";
-       }
+        my $fstype;
+        eval { $fstype = $g->vfs_type ($dev); };
+        if ($fstype) {
+            print " $fstype";
+        } else {
+            print " unknown";
+        }
     }
     print "\n";
 }
@@ -166,13 +166,13 @@ foreach $dev (@fses) {
 # If asked, look in the not_mountable list for potential swap devices.
 if ($all) {
     foreach $dev (@not_mountable) {
-       my $file;
-       eval { $file = $g->file ($dev); };
-       if ($file && $file =~ /\bswap\b/) {
-           print canonicalize($dev);
-           print " swap" if $long;
-           print "\n"
-       }
+        my $file;
+        eval { $file = $g->file ($dev); };
+        if ($file && $file =~ /\bswap\b/) {
+            print canonicalize($dev);
+            print " swap" if $long;
+            print "\n"
+        }
     }
 }
 
@@ -183,7 +183,7 @@ sub canonicalize
     local $_ = shift;
 
     if (m{^/dev/[hv]d([a-z]\d)$}) {
-       return "/dev/sd$1";
+        return "/dev/sd$1";
     }
     $_;
 }
@@ -194,6 +194,7 @@ L<guestfs(3)>,
 L<guestfish(1)>,
 L<virt-cat(1)>,
 L<virt-tar(1)>,
+L<virt-list-partitions(1)>,
 L<Sys::Guestfs(3)>,
 L<Sys::Guestfs::Lib(3)>,
 L<Sys::Virt(3)>,
@@ -201,7 +202,7 @@ L<http://libguestfs.org/>.
 
 =head1 AUTHOR
 
-Richard W.M. Jones L<http://et.redhat.com/~rjones/>
+Richard W.M. Jones L<http://people.redhat.com/~rjones/>
 
 =head1 COPYRIGHT