diff options
author | Lennart Poettering <lennart@poettering.net> | 2023-10-16 16:13:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-16 16:13:16 +0200 |
commit | cde8cc946be9183c8381a5d30be0a862abd6b389 (patch) | |
tree | b6f5d178333e3d68f75bef09463fb39b157be916 /src/shared/bus-unit-util.c | |
parent | mount-util: use mount beneath to replace previous namespace mount (diff) | |
parent | nspawn: set CoredumpReceive=yes on container's scope when --boot is set (diff) | |
download | systemd-cde8cc946be9183c8381a5d30be0a862abd6b389.tar.xz systemd-cde8cc946be9183c8381a5d30be0a862abd6b389.zip |
Merge pull request #29272 from enr0n/coredump-container
coredump: support forwarding coredumps to containers
Diffstat (limited to 'src/shared/bus-unit-util.c')
-rw-r--r-- | src/shared/bus-unit-util.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/shared/bus-unit-util.c b/src/shared/bus-unit-util.c index 634a8f08c2..4ee9706847 100644 --- a/src/shared/bus-unit-util.c +++ b/src/shared/bus-unit-util.c @@ -565,7 +565,8 @@ static int bus_append_cgroup_property(sd_bus_message *m, const char *field, cons "IOAccounting", "BlockIOAccounting", "TasksAccounting", - "IPAccounting")) + "IPAccounting", + "CoredumpReceive")) return bus_append_parse_boolean(m, field, eq); if (STR_IN_SET(field, "CPUWeight", |