From 5d5565ca24b95719461b0c0aebdb0651dd2671ca Mon Sep 17 00:00:00 2001 From: Richard Jones Date: Fri, 14 May 2010 19:42:48 +0100 Subject: [PATCH] virt-df: Display domains in sorted order. --- tools/virt-df | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/virt-df b/tools/virt-df index b997691..4aa1063 100755 --- a/tools/virt-df +++ b/tools/virt-df @@ -163,7 +163,7 @@ if (@ARGV == 0) { # https://bugzilla.redhat.com/show_bug.cgi?id=538041 @doms = grep { $_->get_id () != 0 } @doms; - my @domnames = map { $_->get_name () } @doms; + my @domnames = sort (map { $_->get_name () } @doms); if (@domnames) { print_title (); -- 1.8.3.1