From mboxrd@z Thu Jan 1 00:00:00 1970 From: rmccabe@sourceware.org Date: 31 Jan 2007 23:45:09 -0000 Subject: [Cluster-devel] conga/luci/site/luci/Extensions cluster_adapte ... Message-ID: <20070131234509.9428.qmail@sourceware.org> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit CVSROOT: /cvs/cluster Module name: conga Changes by: rmccabe at sourceware.org 2007-01-31 23:45:09 Modified files: luci/site/luci/Extensions: cluster_adapters.py Log message: show lock_gulmd config properties in the daemon info area for nodes in a GULM cluster Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/site/luci/Extensions/cluster_adapters.py.diff?cvsroot=cluster&r1=1.222&r2=1.223 --- conga/luci/site/luci/Extensions/cluster_adapters.py 2007/01/31 23:36:26 1.222 +++ conga/luci/site/luci/Extensions/cluster_adapters.py 2007/01/31 23:45:09 1.223 @@ -4252,7 +4252,10 @@ if rc is not None: dlist = list() dlist.append("ccsd") - dlist.append("cman") + if model.getGULMPtr() is None: + dlist.append("cman") + else: + dlist.append("lock_gulmd") dlist.append("fenced") dlist.append("rgmanager") states = getDaemonStates(rc, dlist)