From 049542b7edabb7a11d0a95cfc39f51d84d1912d5 Mon Sep 17 00:00:00 2001 From: Ilia Ross Date: Sat, 5 Jul 2025 15:43:26 +0300 Subject: [PATCH] Add DropInPaths property --- init/init-lib.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init/init-lib.pl b/init/init-lib.pl index a65a66018..1b32a2456 100644 --- a/init/init-lib.pl +++ b/init/init-lib.pl @@ -2181,7 +2181,7 @@ while(@units) { while(@args < 100 && @units) { push(@args, shift(@units)); } - my $out = &backquote_command("systemctl show --property=Id,Description,UnitFileState,ActiveState,SubState,ExecStart,ExecStop,ExecReload,ExecMainPID,FragmentPath ".join(" ", @args)." 2>/dev/null"); + my $out = &backquote_command("systemctl show --property=Id,Description,UnitFileState,ActiveState,SubState,ExecStart,ExecStop,ExecReload,ExecMainPID,FragmentPath,DropInPaths ".join(" ", @args)." 2>/dev/null"); my @lines = split(/\r?\n/, $out); my $curr; my @units;