Fix slice-inherit option

This commit is contained in:
ppom 2026-02-26 12:00:00 +01:00
commit f2b1accec0
No known key found for this signature in database

View file

@ -173,7 +173,7 @@ impl Plugin {
// --pipe gives direct, non-emulated stdio access, for better performance.
command.arg("--pipe");
// run the command inside the same slice as reaction
command.arg("--slice-intherit");
command.arg("--slice-inherit");
// Make path absolute for systemd
let full_workdir = path::absolute(&plugin_working_directory)?;