From 09df6c843ae96be5ef417cd08863939a0aa94cf3 Mon Sep 17 00:00:00 2001 From: Lei Feng Date: Thu, 30 Jun 2022 11:15:37 +0800 Subject: [PATCH] EX-5468 lipe: use absolute path in lpcc.service Some platform needs absolute path for command in service script. Signed-off-by: Lei Feng Change-Id: I11ff46ceaffa839540736e46d84fb22b7343ff80 Reviewed-on: https://review.whamcloud.com/47840 Tested-by: jenkins Reviewed-by: Andreas Dilger Tested-by: Andreas Dilger --- lipe/systemd/lpcc.service | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lipe/systemd/lpcc.service b/lipe/systemd/lpcc.service index f791d45..c9b79ca 100644 --- a/lipe/systemd/lpcc.service +++ b/lipe/systemd/lpcc.service @@ -9,7 +9,7 @@ ConditionPathExists=/etc/lpcc.conf [Service] Type=simple ExecStart=/usr/bin/lpcc monitor -ExecStop=kill $MAINPID +ExecStop=/bin/kill $MAINPID [Install] WantedBy=multi-user.target -- 1.8.3.1