From 74c7b1ed052fc42d9841a5d83d310fa96124c47c Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 7 Nov 2013 21:28:15 +0100 Subject: [PATCH] machinectl: show list headers even if we pipe, since that appears to be the usual way --- src/machine/machinectl.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/machine/machinectl.c b/src/machine/machinectl.c index 7feb7be3d..4b8351c98 100644 --- a/src/machine/machinectl.c +++ b/src/machine/machinectl.c @@ -84,8 +84,7 @@ static int list_machines(sd_bus *bus, char **args, unsigned n) { return r; } - if (on_tty()) - printf("%-32s %-9s %-16s\n", "MACHINE", "CONTAINER", "SERVICE"); + printf("%-32s %-9s %-16s\n", "MACHINE", "CONTAINER", "SERVICE"); r = sd_bus_message_enter_container(reply, SD_BUS_TYPE_ARRAY, "(ssso)"); if (r < 0) @@ -103,8 +102,7 @@ static int list_machines(sd_bus *bus, char **args, unsigned n) { if (r < 0) return bus_log_parse_error(r); - if (on_tty()) - printf("\n%u machines listed.\n", k); + printf("\n%u machines listed.\n", k); return 0; } -- 2.30.2