generated from linux-system-roles/template
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix setting stonith-watchdog-timeout Fix a corner case bug occuring with pcs 0.10.15 and newer and pcs 0.11.4 and newer: When setting stonith-watchdog-timeout in a stoppped cluster, cib.xml.sig is not modified by pcs. This leads to pacemaker ignoring new cib.xml content and read configuration from a previous version of cib, effectively reverting stonith-watchdog-timeout update done by the role. Pacemaker then exits with an error and the role fails, unable to proceed and configure the cluster. With old pcs versions, removing cib.xml.sig has no adverse effects. There is no need to check for pcs version whne removing the file. * fix purging nodes from pacemaker
- Loading branch information
1 parent
7124d3b
commit 6058f1b
Showing
2 changed files
with
36 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -116,4 +116,5 @@ | |
# started. | ||
when: | ||
- not ansible_check_mode | ||
- (item | length) > 0 | ||
- item not in __ha_cluster_all_node_names |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters