Package: lvm2
Version: 2.03.11-2.1
Source: lvm2

Dear Maintainers,

I recently noticed that lvm2-polld started via sysvinit dies after 60s. This is due to the daemon arg "-t 60" which makes sense for a systemd socket but unfortunately not for sysvinit. Removing the arg fixes the issue, see also the the manpage for reference [1].
Attached you can find a patch.

Best regards,
Valentin

[1] https://manpages.debian.org/buster/lvm2/lvmpolld.8.en.html#OPTIONS
--- /etc/init.d/lvm2-lvmpolld	2021-06-01 16:24:33.649383568 +0200
+++ /etc/init.d/lvm2-lvmpolld.orig	2021-06-01 16:24:22.453383376 +0200
@@ -14,7 +14,7 @@
 
 DESC="LVM2 poll daemon"
 DAEMON=/sbin/lvmpolld
-DAEMON_ARGS=""
+DAEMON_ARGS="-t 60"
 PIDFILE=/run/lvmpolld.pid
 
 do_start_prepare() {

Reply via email to