diff --git a/src/concepts/plugin.rs b/src/concepts/plugin.rs index 8c3c142..3f3936c 100644 --- a/src/concepts/plugin.rs +++ b/src/concepts/plugin.rs @@ -172,6 +172,8 @@ impl Plugin { let mut command = Command::new("run0"); // --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"); // Make path absolute for systemd let full_workdir = path::absolute(&plugin_working_directory)?;