From: Lennart Poettering Date: Thu, 28 Oct 2021 14:47:40 +0000 (+0200) Subject: systemctl: only fall back to local cgroup display if we talk to local systemd X-Git-Tag: v250-rc1~383^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=35ac0260db7b896604d156e9638ad15700083508;p=thirdparty%2Fsystemd.git systemctl: only fall back to local cgroup display if we talk to local systemd Otherwise we likely show rubbish because even in local containers we nowadays have cgroup namespacing, hence we likely can't access the cgroup tree from the host at the same place as inside the container. --- diff --git a/src/systemctl/systemctl-show.c b/src/systemctl/systemctl-show.c index ea4ac63c44b..af2d14d2c99 100644 --- a/src/systemctl/systemctl-show.c +++ b/src/systemctl/systemctl-show.c @@ -713,7 +713,7 @@ static void print_status_info( c = LESS_BY(columns(), strlen(prefix)); r = unit_show_processes(bus, i->id, i->control_group, prefix, c, get_output_flags(), &error); - if (r == -EBADR) { + if (r == -EBADR && arg_transport == BUS_TRANSPORT_LOCAL) { unsigned k = 0; pid_t extra[2];