From fee6d013d859bc66f5c993530898fece53fab06d Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Mon, 24 Aug 2015 21:08:04 +0200 Subject: machinectl: don't show ".host" pseudo-machine in list by default Let's hide all machines whose name begins with "." by default, thus hiding the ".host" pseudo-machine, unless --all is specified. This takes inspiration from the ".host" image handling in "machinectl list-images" which also hides all images whose name starts with ".". --- src/machine/machinectl.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src') diff --git a/src/machine/machinectl.c b/src/machine/machinectl.c index c84deba1c0..0f9e732ada 100644 --- a/src/machine/machinectl.c +++ b/src/machine/machinectl.c @@ -158,6 +158,9 @@ static int list_machines(int argc, char *argv[], void *userdata) { while ((r = sd_bus_message_read(reply, "(ssso)", &name, &class, &service, &object)) > 0) { size_t l; + if (name[0] == '.' && !arg_all) + continue; + if (!GREEDY_REALLOC(machines, n_allocated, n_machines + 1)) return log_oom(); -- cgit v1.2.3-54-g00ecf