On Wed, Jun 20, 2012 at 06:29:43PM +0700, Philippe Alcoy wrote:
> # HG changeset patch
> # User Philippe Alcoy <[email protected]>
> # Date 1340188944 -25200
> # Node ID f6ce2daddba6234643f715c46b28d5562940eb1f
> # Parent add12b838ef461b20eec223e551bf508038dc640
> Fix ha.cf node parsing in ha_propagate
Someone is actually *using* this?
and even with multiple nodes per "node" line in ha.cf?
> diff -r add12b838ef4 -r f6ce2daddba6 heartbeat/lib/ha_propagate.in
> --- a/heartbeat/lib/ha_propagate.in Mon Apr 09 17:50:27 2012 +0200
> +++ b/heartbeat/lib/ha_propagate.in Wed Jun 20 17:42:24 2012 +0700
> @@ -27,9 +27,8 @@
> for line in f:
> if line.startswith("node"):
> toks = line.split()
> - if (len(toks) == 2):
> - nodeName = toks[1]
> - nodes.append(nodeName)
> + if (len(toks) > 0):
I'd suggest to use > 1.
> + nodes = toks[1:]
> f.close()
>
> thisnode = os.uname()[1]
--
: Lars Ellenberg
: LINBIT | Your Way to High Availability
: DRBD/HA support and consulting http://www.linbit.com
_______________________________________________________
Linux-HA-Dev: [email protected]
http://lists.linux-ha.org/mailman/listinfo/linux-ha-dev
Home Page: http://linux-ha.org/