]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
virsh-secret: Unify list column alignment
authorPeter Krempa <pkrempa@redhat.com>
Tue, 12 Nov 2013 16:42:43 +0000 (17:42 +0100)
committerPeter Krempa <pkrempa@redhat.com>
Wed, 13 Nov 2013 09:07:32 +0000 (10:07 +0100)
Before:

$ virsh secret-list
UUID                                 Usage
-----------------------------------------------------------
0a81f5b2-8403-7b23-c8d6-21ccc2f80d6f volume /var/lib/libvirt/images/puppyname.img
0a81f5b2-8403-7b23-c8d6-2deadbeefd6f Unused

After:

$ virsh secret-list
 UUID                                  Usage
--------------------------------------------------------------------------------
 0a81f5b2-8403-7b23-c8d6-21ccc2f80d6f  volume /var/lib/libvirt/images/puppyname.img
 0a81f5b2-8403-7b23-c8d6-2deadbeefd6f  Unused

tools/virsh-secret.c

index e849a79b19503b7f53be15e2d4d0600ce830f24a..b5acfda73252ae77176a65b8cb5c994feae38bdb 100644 (file)
@@ -532,8 +532,9 @@ cmdSecretList(vshControl *ctl, const vshCmd *cmd ATTRIBUTE_UNUSED)
     if (!(list = vshSecretListCollect(ctl, flags)))
         return false;
 
-    vshPrintExtra(ctl, "%-36s %s\n", _("UUID"), _("Usage"));
-    vshPrintExtra(ctl, "-----------------------------------------------------------\n");
+    vshPrintExtra(ctl, " %-36s  %s\n", _("UUID"), _("Usage"));
+    vshPrintExtra(ctl, "----------------------------------------"
+                       "----------------------------------------\n");
 
     for (i = 0; i < list->nsecrets; i++) {
         virSecretPtr sec = list->secrets[i];
@@ -547,11 +548,11 @@ cmdSecretList(vshControl *ctl, const vshCmd *cmd ATTRIBUTE_UNUSED)
         }
 
         if (usageType) {
-            vshPrint(ctl, "%-36s %s %s\n",
+            vshPrint(ctl, " %-36s  %s %s\n",
                      uuid, usageStr,
                      virSecretGetUsageID(sec));
         } else {
-            vshPrint(ctl, "%-36s %s\n",
+            vshPrint(ctl, " %-36s  %s\n",
                      uuid, _("Unused"));
         }
     }