From: Thomas Lamprecht Date: Tue, 26 Mar 2019 13:50:14 +0000 (+0100) Subject: fix 'PIDFile= references path below legacy directory /var/run/' warning X-Git-Url: https://git.proxmox.com/?p=pve-cluster.git;a=commitdiff_plain;h=50bf398bc084ff5fd143c835569ae04a6e7a0056 fix 'PIDFile= references path below legacy directory /var/run/' warning /var/run is a symlink to /run on stretch and buster, and the systemd version of buster will annoy one with warnings if /var/run/xyz.pid is used.. Signed-off-by: Thomas Lamprecht --- diff --git a/debian/pve-cluster.service b/debian/pve-cluster.service index 0aa48cd..c6f73ee 100644 --- a/debian/pve-cluster.service +++ b/debian/pve-cluster.service @@ -21,7 +21,7 @@ KillMode=mixed Restart=on-failure TimeoutStopSec=10 Type=forking -PIDFile=/var/run/pve-cluster.pid +PIDFile=/run/pve-cluster.pid [Install] WantedBy=multi-user.target