From 1ff6192737be82c17ec1803c8cf6ad6f3fbb1222 Mon Sep 17 00:00:00 2001 From: WANG Chao Date: Wed, 27 Aug 2014 16:32:17 +0800 Subject: [PATCH] kdump-emergency.service: executable uses absolute path Bao noticed the following systemd warning: systemd[1]: [/usr/lib/systemd/system/emergency.service:17] Executable path is not absolute, ignoring: systemctl --no-block isolate kdump-error-handler.service It turns out that now systemd doesn't allow relative path for an executable, we must adapt that, make the change. Signed-off-by: WANG Chao Tested-by: Baoquan He Acked-by: Vivek Goyal --- dracut-kdump-emergency.service | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dracut-kdump-emergency.service b/dracut-kdump-emergency.service index a64610c..fb764f2 100644 --- a/dracut-kdump-emergency.service +++ b/dracut-kdump-emergency.service @@ -14,7 +14,7 @@ Description=Kdump Emergency DefaultDependencies=no [Service] -ExecStart=systemctl --no-block isolate kdump-error-handler.service +ExecStart=/usr/bin/systemctl --no-block isolate kdump-error-handler.service Type=oneshot StandardInput=tty-force StandardOutput=inherit