This is an automated email from the git hooks/post-receive script.
teigland pushed a commit to branch master in repository sanlock.
commit 9c626f97b25bf1973ece91c6f5dd67628bb0abd1 Author: David Teigland teigland@redhat.com AuthorDate: Fri Oct 18 12:57:49 2024 -0500
systemd-wdmd: work around race with udev setting softdog label
After modprobe softdog, udev wants to set permission and/or label on the watchdog device. Wait until that's done before trying to test/probe the watchdog device. RHEL-56479 --- init.d/systemd-wdmd | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/init.d/systemd-wdmd b/init.d/systemd-wdmd index 0016097..c3126c4 100644 --- a/init.d/systemd-wdmd +++ b/init.d/systemd-wdmd @@ -19,6 +19,8 @@ watchdog_check() { if [ $retval -ne 0 ]; then echo -n $"Loading the softdog kernel module: " modprobe softdog + # handle delay in udev setting permission/label + udevadm settle
watchdog_probe retval=$?
sanlock-devel@lists.fedorahosted.org