On Tue, Apr 01, 2014 at 10:41:58AM -0400, Martin Perina wrote: [..]
diff --git a/kdump-lib.sh b/kdump-lib.sh index 7103ba9..659ead3 100755 --- a/kdump-lib.sh +++ b/kdump-lib.sh @@ -5,7 +5,6 @@
FENCE_KDUMP_CONFIG_FILE="/etc/sysconfig/fence_kdump" FENCE_KDUMP_SEND="/usr/libexec/fence_kdump_send" -FENCE_KDUMP_NODES_FILE="/etc/fence_kdump_nodes"
Why are we removing it? I thought you needed this to maintain backward compatibility with pcs?
Nodes read from Pacemaker config during setup was written to this file, then the file was stored in initial ramdisk and loaded during kdump. Now only fence_kdump_nodes option is used for storing fence_kdump_nodes. Please see kdump_configure_fence_kdump() in dracut-module-setup.sh
Ok got it. In case of pcs we get list of nodes from "pcs cluster cib" and not from FENCE_KDUMP_NODES_FILE. So we can remove it as it will be replaced by fence_kdump_nodes option in kdump.conf.
Thanks Vivek