From 2bf1767a9cf2e4d58aa9b0d7625c742402b298f3 Mon Sep 17 00:00:00 2001 From: Richard Megginson Date: Tue, 13 Dec 2022 16:29:55 -0700 Subject: [PATCH] Version 1.8.4 - CHANGELOG.md [citest skip] (#91) [1.8.4] - 2022-12-13 -------------------- ### New Features - none ### Bug Fixes - Allow enabled SBD on disabled cluster (#81) Currently the sbd.service will not be enabled if the cluster autostart is disabled. This is not intended behavior as is will effectively break the feature. We can simply remove the condition to depend on ha_cluster_start_on_boot as on a RHEL8 system the sbd.service has a dependencies (Before/After/PartOf/RequiredBy) to cluster related services which make sure it is only ever started by the cluster (a manual start is not possible). ### Other Changes - none Signed-off-by: Rich Megginson Signed-off-by: Rich Megginson --- CHANGELOG.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c0cac20..4d345df0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,29 @@ Changelog ========= +[1.8.4] - 2022-12-13 +-------------------- + +### New Features + +- none + +### Bug Fixes + +- Allow enabled SBD on disabled cluster (#81) + +Currently the sbd.service will not be enabled if the cluster autostart +is disabled. This is not intended behavior as is will effectively break +the feature. We can simply remove the condition to depend on +ha_cluster_start_on_boot as on a RHEL8 system the sbd.service has a +dependencies (Before/After/PartOf/RequiredBy) to cluster related +services which make sure it is only ever started by the cluster (a +manual start is not possible). + +### Other Changes + +- none + [1.8.3] - 2022-12-12 --------------------