All of lore.kernel.org
 help / color / mirror / Atom feed
* [Cluster-devel] [PATCH] resource-agents: Find any descendant IP resource of a service
@ 2011-09-28 11:19 Michael Bunk
  2011-09-28 20:35 ` Lon Hohberger
  0 siblings, 1 reply; 3+ messages in thread
From: Michael Bunk @ 2011-09-28 11:19 UTC (permalink / raw)
  To: cluster-devel.redhat.com

Not just immediate children.  This fixes errors in sylog like this:

rgmanager[xxxx]: Looking For IP Addresses [apache:apache] > Failed - No IP Addresses Found
---
 rgmanager/src/resources/utils/config-utils.sh.in |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/rgmanager/src/resources/utils/config-utils.sh.in b/rgmanager/src/resources/utils/config-utils.sh.in
index 299537a..7786eb3 100644
--- a/rgmanager/src/resources/utils/config-utils.sh.in
+++ b/rgmanager/src/resources/utils/config-utils.sh.in
@@ -135,7 +135,7 @@ get_service_ip_keys()
 	#
 	x=1
 	while : ; do
-		key="/cluster/rm/service[@name=\"$svc\"]/ip[$x]"
+		key="/cluster/rm/service[@name=\"$svc\"]//ip[$x]"
 
 		#
 		# Try direct method
-- 
1.7.5.1



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Cluster-devel] [PATCH] resource-agents: Find any descendant IP resource of a service
  2011-09-28 11:19 [Cluster-devel] [PATCH] resource-agents: Find any descendant IP resource of a service Michael Bunk
@ 2011-09-28 20:35 ` Lon Hohberger
  2011-09-30  9:01   ` Michael Bunk
  0 siblings, 1 reply; 3+ messages in thread
From: Lon Hohberger @ 2011-09-28 20:35 UTC (permalink / raw)
  To: cluster-devel.redhat.com

On 09/28/2011 07:19 AM, Michael Bunk wrote:
> Not just immediate children.  This fixes errors in sylog like this:
>
> rgmanager[xxxx]: Looking For IP Addresses [apache:apache]>  Failed - No IP Addresses Found

I -think- it was intentional; if it's not at the top level, you can do 
things like:

   <service>
     <apache>
       <ip/>
     </apache>
   </service>

The // will then find that IP, but the configuration generated by apache 
resource agent will be incorrect and cause the Apache instance to fail 
to start: it will try to bind to the IP address.

I suppose that's a degenerate case, however.

The RA guys should definitely have an idea here.

-- Lon



^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Cluster-devel] [PATCH] resource-agents: Find any descendant IP resource of a service
  2011-09-28 20:35 ` Lon Hohberger
@ 2011-09-30  9:01   ` Michael Bunk
  0 siblings, 0 replies; 3+ messages in thread
From: Michael Bunk @ 2011-09-30  9:01 UTC (permalink / raw)
  To: cluster-devel.redhat.com

Am 28.09.2011 22:35, schrieb Lon Hohberger:
> On 09/28/2011 07:19 AM, Michael Bunk wrote:
>> Not just immediate children.  This fixes errors in sylog like this:
>>
>> rgmanager[xxxx]: Looking For IP Addresses [apache:apache]>  Failed -
>> No IP Addresses Found
> 
> I -think- it was intentional; if it's not at the top level, you can do
> things like:
> 
>   <service>
>     <apache>
>       <ip/>
>     </apache>
>   </service>
> 
> The // will then find that IP, but the configuration generated by apache
> resource agent will be incorrect and cause the Apache instance to fail
> to start: it will try to bind to the IP address.
> 
> I suppose that's a degenerate case, however.

Yes, that is pathological... but our case - which worked in RHEL 4 -
looks like this:

<service>
  <script ref="tiebreaker">
     <script file="/etc/cluster/drbd0" name="drbd0" ...>
        <fs device="/dev/drbd0" ...>
          <ip ...>
            <apache/>
          </ip>
        </fs>
      </script>
    </script>
</service>

It doesn't feel right to make the ip resource a sibling of the
tiebreaker script.

If <ip> resources are required to be put directly under <service>, then
the docs (without having read them every word) should mention this and
the XML schema for cluster.conf should enforce it.

Michael



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-09-30  9:01 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-09-28 11:19 [Cluster-devel] [PATCH] resource-agents: Find any descendant IP resource of a service Michael Bunk
2011-09-28 20:35 ` Lon Hohberger
2011-09-30  9:01   ` Michael Bunk

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.