diff --git a/moonraker/components/machine.py b/moonraker/components/machine.py index 192d101..9c723db 100644 --- a/moonraker/components/machine.py +++ b/moonraker/components/machine.py @@ -284,7 +284,7 @@ class Machine: async def _find_active_services(self): shell_cmd: SCMDComp = self.server.lookup_component('shell_command') scmd = shell_cmd.build_shell_command( - "systemctl list-units --all --type=service") + "systemctl list-units --all --type=service --plain --no-legend") try: resp = await scmd.run_with_response() lines = resp.split('\n')