MT#61541 Swap trixie conditional to list the trixie case first as >=

Listing it first makes it easier to know that this is the one that we
need to preserve, and changing from the equality operator to a
greater-or-equal, makes it explicit what the fallback case is about.

Change-Id: Ifb63f9cb1d88fec4c67b51502a88724a009d50e4
mr13.3
Guillem Jover 1 year ago
parent b73fea40fb
commit d40328b16a

@ -4,10 +4,10 @@ kernel-param:
value: "1"
kernel.core_pattern:
{{if eq .Env.DEBIAN_RELEASE "12"}}
value: "|/lib/systemd/systemd-coredump %P %u %g %s %t 9223372036854775808 %h"
{{else}}
{{if ge .Env.DEBIAN_RELEASE "13"}}
value: "|/usr/lib/systemd/systemd-coredump %P %u %g %s %t %c %h"
{{else}}
value: "|/lib/systemd/systemd-coredump %P %u %g %s %t 9223372036854775808 %h"
{{end}}
fs.suid_dumpable:

Loading…
Cancel
Save