summaryrefslogtreecommitdiff
path: root/src/systemctl
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2021-10-28 16:47:40 +0200
committerLennart Poettering <lennart@poettering.net>2021-10-28 18:35:18 +0200
commit35ac0260db7b896604d156e9638ad15700083508 (patch)
treeab216921bc3af262b99ad46575450455b70de9ea /src/systemctl
parenta0dde733ac750582242d36b8814b216f30acd5e3 (diff)
downloadsystemd-35ac0260db7b896604d156e9638ad15700083508.tar.gz
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.
Diffstat (limited to 'src/systemctl')
-rw-r--r--src/systemctl/systemctl-show.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/systemctl/systemctl-show.c b/src/systemctl/systemctl-show.c
index ea4ac63c44..af2d14d2c9 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];