summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorRichard Jones <rjones@redhat.com>2010-03-12 16:23:46 +0000
committerRichard Jones <rjones@redhat.com>2010-03-12 16:23:46 +0000
commit369872b91ed50e2803dc2837183258776e9868e0 (patch)
treec408ee97f225e966dbd98e31eaa13e20b177f12c /tools
parentffa3af3b5dd234012f9f4b9c28d483ff371f0ecc (diff)
downloadlibguestfs-369872b91ed50e2803dc2837183258776e9868e0.tar.gz
libguestfs-369872b91ed50e2803dc2837183258776e9868e0.tar.xz
libguestfs-369872b91ed50e2803dc2837183258776e9868e0.zip
Tab to space (whitespace fixes only).
Diffstat (limited to 'tools')
-rwxr-xr-xtools/virt-list-filesystems34
1 files changed, 17 insertions, 17 deletions
diff --git a/tools/virt-list-filesystems b/tools/virt-list-filesystems
index 99480958..0d527457 100755
--- a/tools/virt-list-filesystems
+++ b/tools/virt-list-filesystems
@@ -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";
}
$_;
}