From e97fe4f28cc2015775bdd85251396674826227fa Mon Sep 17 00:00:00 2001 From: Michael Nosthoff Date: Wed, 16 Sep 2020 17:35:09 +0200 Subject: [PATCH] package/openvmtools: use /run for PIDFile MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Fixes: PIDFile= references a path below legacy directory /var/run/, updating /var/run/vmtoolsd.pid → /run/vmtoolsd.pid; please update the unit file accordingly. Signed-off-by: Michael Nosthoff Signed-off-by: Thomas Petazzoni --- package/openvmtools/vmtoolsd.service | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/openvmtools/vmtoolsd.service b/package/openvmtools/vmtoolsd.service index cb97357ec2..1d2a3566cf 100644 --- a/package/openvmtools/vmtoolsd.service +++ b/package/openvmtools/vmtoolsd.service @@ -5,8 +5,8 @@ ConditionVirtualization=vmware [Service] Type=forking -PIDFile=/var/run/vmtoolsd.pid -ExecStart=/usr/bin/vmtoolsd -b /var/run/vmtoolsd.pid +PIDFile=/run/vmtoolsd.pid +ExecStart=/usr/bin/vmtoolsd -b /run/vmtoolsd.pid Restart=on-failure KillMode=process KillSignal=SIGKILL -- 2.30.2